(svn r1793) Revert one instance of $(shell) back to ``, because MorphOS does The Wrong Thing(tm) when date is used within $(shell)
authortron
Fri, 04 Feb 2005 17:57:07 +0000
changeset 1289 93edd9c4e1b6
parent 1288 0ade62186168
child 1290 862926d56497
(svn r1793) Revert one instance of $(shell) back to ``, because MorphOS does The Wrong Thing(tm) when date is used within $(shell)
Makefile
--- a/Makefile	Fri Feb 04 17:45:11 2005 +0000
+++ b/Makefile	Fri Feb 04 17:57:07 2005 +0000
@@ -250,7 +250,7 @@
 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)