From 7ec7697f5665080e47f03f5953116a144ab717b4 Mon Sep 17 00:00:00 2001 From: tron Date: Fri, 4 Feb 2005 17:57:07 +0000 Subject: [PATCH] (svn r1793) Revert one instance of $(shell) back to ``, because MorphOS does The Wrong Thing(tm) when date is used within $(shell) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 3fe5f5e82b..b42ea848f9 100644 --- a/Makefile +++ b/Makefile @@ -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)