diff options
author | bjarni <bjarni@openttd.org> | 2004-12-12 21:18:39 +0000 |
---|---|---|
committer | bjarni <bjarni@openttd.org> | 2004-12-12 21:18:39 +0000 |
commit | 9e3ca26ae60b449ceb6db2e9c8ab4ed459b942c2 (patch) | |
tree | 1c1fd514c4c75d9c32d987bae74ae866f26954fc /Makefile | |
parent | 52134822b8fa62fb2ac680c6e598cceb1996a213 (diff) | |
download | openttd-9e3ca26ae60b449ceb6db2e9c8ab4ed459b942c2.tar.xz |
(svn r1039) Makefile: now RELEASE flag can contain () too
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -709,11 +709,11 @@ endif 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. |