summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortron <tron@openttd.org>2005-02-04 17:57:07 +0000
committertron <tron@openttd.org>2005-02-04 17:57:07 +0000
commit7ec7697f5665080e47f03f5953116a144ab717b4 (patch)
treebdc62ce302ddc536063a290e8c961882c1b04e10
parentcf5dfe664669cb9f48834427c37fa98339439286 (diff)
downloadopenttd-7ec7697f5665080e47f03f5953116a144ab717b4.tar.xz
(svn r1793) Revert one instance of $(shell) back to ``, because MorphOS does The Wrong Thing(tm) when date is used within $(shell)
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 3fe5f5e82..b42ea848f 100644
--- a/Makefile
+++ b/Makefile
@@ -250,7 +250,7 @@ REV_NUMBER:=0
endif
# MorphOS needs builddate
-BUILDDATE=$(shell date +%d.%m.%y)
+BUILDDATE=`date +%d.%m.%y`
# AMD64 needs a little more settings to work
ifeq ($(shell uname -m), x86_64)