changeset 610:2da3c30942d5 draft

(svn r1034) Makefile: fixed issue where it would not compile if RELEASE string contained space. Did the same fix to OSXAPP, just in case it's changed to something containing space at a later date
author bjarni <bjarni@openttd.org>
date Sun, 12 Dec 2004 18:10:35 +0000
parents b14ef60e5438
children 7320292d0fcb
files Makefile
diffstat 1 files changed, 14 insertions(+), 14 deletions(-) [+]
line wrap: on
line diff
--- a/Makefile
+++ b/Makefile
@@ -636,21 +636,21 @@
  		$(C_LINK) $@ $(TTDLDFLAGS) $(ttd_OBJS) $(LIBS) $(VERBOSE_FILTER)
 
 $(OSX): 
-	@rm -fr $(OSXAPP)
-	@mkdir -p $(OSXAPP)/Contents/MacOS
-	@mkdir -p $(OSXAPP)/Contents/Resources
-	@mkdir -p $(OSXAPP)/Contents/Data
-	@mkdir -p $(OSXAPP)/Contents/Lang
-	@echo "APPL????" > $(OSXAPP)/Contents/PkgInfo
-	@cp os/macos/ttd.icns $(OSXAPP)/Contents/Resources/openttd.icns
-	@os/macos/plistgen.sh $(OSXAPP) $(REV)
-	@cp os/macos/track_starter $(OSXAPP)/contents/macos
+	@rm -fr "$(OSXAPP)"
+	@mkdir -p "$(OSXAPP)"/Contents/MacOS
+	@mkdir -p "$(OSXAPP)"/Contents/Resources
+	@mkdir -p "$(OSXAPP)"/Contents/Data
+	@mkdir -p "$(OSXAPP)"/Contents/Lang
+	@echo "APPL????" > "$(OSXAPP)"/Contents/PkgInfo
+	@cp os/macos/ttd.icns "$(OSXAPP)"/Contents/Resources/openttd.icns
+	@os/macos/plistgen.sh "$(OSXAPP)" "$(REV)"
+	@cp os/macos/track_starter "$(OSXAPP)"/contents/macos
 	@ls os/macos | grep -q "\.class" || \
 	javac os/macos/OpenTTDMidi.java
-	@cp os/macos/OpenTTDMidi.class $(OSXAPP)/contents/macos
-	@cp data/* $(OSXAPP)/Contents/data/
-	@cp lang/*.lng $(OSXAPP)/Contents/lang/
-	@cp $(TTD) $(OSXAPP)/Contents/MacOS/$(TTD)
+	@cp os/macos/OpenTTDMidi.class "$(OSXAPP)"/contents/macos
+	@cp data/* "$(OSXAPP)"/Contents/data/
+	@cp lang/*.lng "$(OSXAPP)"/Contents/lang/
+	@cp $(TTD) "$(OSXAPP)"/Contents/MacOS/$(TTD)
 
 $(endwarnings): $(64_bit_warnings)
 
@@ -713,7 +713,7 @@
 	@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.