(svn r1793) Revert one instance of $(shell) back to ``, because MorphOS does The Wrong Thing(tm) when date is used within $(shell)

This commit is contained in:
tron 2005-02-04 17:57:07 +00:00
parent 8eda8113d9
commit f8f6132006
1 changed files with 1 additions and 1 deletions

View File

@ -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)