diff options
author | tron <tron@openttd.org> | 2005-02-04 17:57:07 +0000 |
---|---|---|
committer | tron <tron@openttd.org> | 2005-02-04 17:57:07 +0000 |
commit | 7ec7697f5665080e47f03f5953116a144ab717b4 (patch) | |
tree | bdc62ce302ddc536063a290e8c961882c1b04e10 | |
parent | cf5dfe664669cb9f48834427c37fa98339439286 (diff) | |
download | openttd-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-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |