summaryrefslogtreecommitdiff
path: root/Makefile
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
commitf8f6132006195dbaedd64eafbde5db431a965563 (patch)
treebdc62ce302ddc536063a290e8c961882c1b04e10 /Makefile
parent8eda8113d946b199e366d26b59ee592475f3f0f2 (diff)
downloadopenttd-f8f6132006195dbaedd64eafbde5db431a965563.tar.xz
(svn r1793) Revert one instance of $(shell) back to ``, because MorphOS does The Wrong Thing(tm) when date is used within $(shell)
Diffstat (limited to 'Makefile')
-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)