aboutsummaryrefslogtreecommitdiff
path: root/Makefile.common
diff options
context:
space:
mode:
authorEugene Sandulenko2016-09-10 22:19:32 +0200
committerEugene Sandulenko2016-09-10 22:19:32 +0200
commit4af0bc492457909a13ffa688814e3b1665a66277 (patch)
tree5f7b5fa293a9ab4eab3afd799355ffbbe10526ba /Makefile.common
parent2fd23749924d0ee23f0fe9e48b8bc7831df54853 (diff)
downloadscummvm-rg350-4af0bc492457909a13ffa688814e3b1665a66277.tar.gz
scummvm-rg350-4af0bc492457909a13ffa688814e3b1665a66277.tar.bz2
scummvm-rg350-4af0bc492457909a13ffa688814e3b1665a66277.zip
AMIGAOS: Amiga needs date in specific format in version cookie. Now AmiUpdate works
Diffstat (limited to 'Makefile.common')
-rw-r--r--Makefile.common10
1 files changed, 6 insertions, 4 deletions
diff --git a/Makefile.common b/Makefile.common
index 1c6403db0d..f910da62d9 100644
--- a/Makefile.common
+++ b/Makefile.common
@@ -165,6 +165,11 @@ VER_MINOR = $(shell echo $(VERSION) | cut -d. -f 2)
VER_PATCH = $(shell echo $(VERSION) | cut -d. -f 3 | cut -c1)
VER_EXTRA = $(shell echo $(VERSION) | cut -d. -f 3 | cut -c2-)
+#ifdef AMIGAOS
+# Amiga needs date in specific format for the version cookie
+AMIGA_DATE = $(shell gdate '+%d.%m.%Y')
+base/version.o: CXXFLAGS:=$(CXXFLAGS) -DAMIGA_DATE=\"$(AMIGA_DATE)\"
+#endif
######################################################################
# Get git's working copy information
@@ -182,13 +187,10 @@ else
GITROOT := git://github.com/scummvm/scummvm.git
endif
-# Amiga needs date in another format
-AMIGA_DATE = $(shell date '+%d.%m.%Y')
-
# Define the Subversion revision if available, either autodetected or
# specified by the user, but only for base/version.cpp.
ifneq ($(origin VER_REV), undefined)
-base/version.o: CXXFLAGS:=$(CXXFLAGS) -DSCUMMVM_REVISION=\"$(VER_REV)\" -DAMIGA_DATE=\"$(AMIGA_DATE)\"
+base/version.o: CXXFLAGS:=$(CXXFLAGS) -DSCUMMVM_REVISION=\"$(VER_REV)\"
endif
######################################################################