mirror of https://github.com/OpenTTD/OpenTTD
(svn r1793) Revert one instance of $(shell) back to ``, because MorphOS does The Wrong Thing(tm) when date is used within $(shell)
parent
8eda8113d9
commit
f8f6132006
2
Makefile
2
Makefile
|
@ -250,7 +250,7 @@ REV_NUMBER:=0
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# MorphOS needs builddate
|
# MorphOS needs builddate
|
||||||
BUILDDATE=$(shell date +%d.%m.%y)
|
BUILDDATE=`date +%d.%m.%y`
|
||||||
|
|
||||||
# AMD64 needs a little more settings to work
|
# AMD64 needs a little more settings to work
|
||||||
ifeq ($(shell uname -m), x86_64)
|
ifeq ($(shell uname -m), x86_64)
|
||||||
|
|
Loading…
Reference in New Issue