fix some typos in comments

This commit is contained in:
micwoj92 2020-05-21 03:07:15 +02:00 committed by GitHub
parent 26019096ee
commit 23d0f705c6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6,8 +6,8 @@
# # # #
# Dependencies: # # Dependencies: #
# - None, but you need a Quake II to play. # # - None, but you need a Quake II to play. #
# While in theorie every one should work # # While in theory every one should work #
# Yamagi Quake II ist recommended. # # Yamagi Quake II is recommended. #
# # # #
# Platforms: # # Platforms: #
# - FreeBSD # # - FreeBSD #
@ -91,7 +91,7 @@ endif
# ---------- # ----------
# Switch of some annoying warnings. # Switch off some annoying warnings.
ifeq ($(COMPILER), clang) ifeq ($(COMPILER), clang)
# -Wno-missing-braces because otherwise clang complains # -Wno-missing-braces because otherwise clang complains
# about totally valid 'vec3_t bla = {0}' constructs. # about totally valid 'vec3_t bla = {0}' constructs.
@ -112,7 +112,7 @@ override CFLAGS += -DYQ2OSTYPE=\"$(YQ2_OSTYPE)\" -DYQ2ARCH=\"$(YQ2_ARCH)\"
# ---------- # ----------
# For reproduceable builds, look here for details: # For reproducible builds, look here for details:
# https://reproducible-builds.org/specs/source-date-epoch/ # https://reproducible-builds.org/specs/source-date-epoch/
ifdef SOURCE_DATE_EPOCH ifdef SOURCE_DATE_EPOCH
CFLAGS += -DBUILD_DATE=\"$(shell date --utc --date="@${SOURCE_DATE_EPOCH}" +"%b %_d %Y" | sed -e 's/ /\\ /g')\" CFLAGS += -DBUILD_DATE=\"$(shell date --utc --date="@${SOURCE_DATE_EPOCH}" +"%b %_d %Y" | sed -e 's/ /\\ /g')\"
@ -143,7 +143,7 @@ LDFLAGS ?=
# It's a shared library. # It's a shared library.
override LDFLAGS += -shared override LDFLAGS += -shared
# Required libaries # Required libraries
ifeq ($(YQ2_OSTYPE), Darwin) ifeq ($(YQ2_OSTYPE), Darwin)
override LDFLAGS += -arch $(YQ2_ARCH) override LDFLAGS += -arch $(YQ2_ARCH)
else ifeq ($(YQ2_OSTYPE), Windows) else ifeq ($(YQ2_OSTYPE), Windows)