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 | f8f6132006195dbaedd64eafbde5db431a965563 (patch) | |
tree | bdc62ce302ddc536063a290e8c961882c1b04e10 /Makefile | |
parent | 8eda8113d946b199e366d26b59ee592475f3f0f2 (diff) | |
download | openttd-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-- | 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) |