(svn r1039) Makefile: now RELEASE flag can contain () too
authorbjarni
Sun, 12 Dec 2004 21:18:39 +0000
changeset 615 3a22cf31bb29
parent 614 e016770cb781
child 616 3ab1124303e0
(svn r1039) Makefile: now RELEASE flag can contain () too
Makefile
--- a/Makefile	Sun Dec 12 20:36:24 2004 +0000
+++ b/Makefile	Sun Dec 12 21:18:39 2004 +0000
@@ -709,11 +709,11 @@
 
 rev.c: FORCE
 	@# setting the revision number in a place, there the binary can read it
-	@echo 'const char _openttd_revision[] = "'$(REV)'";' >>rev.c.new
+	@echo 'const char _openttd_revision[] = "$(REV)";' >>rev.c.new
 	@echo 'const int _revision_number = $(REV_NUMBER);' >>rev.c.new
 	@# some additions for MorphOS versions tag
 	@echo '#ifdef __MORPHOS__'  >>rev.c.new
-	@echo 'const char morphos_versions_tag[] = "\\0$$VER: OpenTTD "'$(REV)'" ('${BUILDDATE}') © OpenTTD Team [MorphOS, PowerPC]";'  >>rev.c.new
+	@echo 'const char morphos_versions_tag[] = "\\0$$VER: OpenTTD $(REV) ('${BUILDDATE}') © OpenTTD Team [MorphOS, PowerPC]";'  >>rev.c.new
 	@echo '#endif' >>rev.c.new
 	@# Only update the real rev.c if it actually changed, to prevent
 	@# useless rebuilds.