(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 cf5dfe6646
commit 7ec7697f56

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)