summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDarkvater <Darkvater@openttd.org>2005-09-01 21:10:05 +0000
committerDarkvater <Darkvater@openttd.org>2005-09-01 21:10:05 +0000
commitd37cb0eb786273752b47c55f49b19a132be13378 (patch)
treee5ac357103b3720fd0080443bc6fb4d62b006065 /Makefile
parent0d488894b1991af9ecf671fe347c93f3cb4992c5 (diff)
downloadopenttd-d37cb0eb786273752b47c55f49b19a132be13378.tar.xz
(svn r2903) Fix case mismatch for ottdmidi java file (moebius)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 1111964ea..e40c21297 100644
--- a/Makefile
+++ b/Makefile
@@ -791,7 +791,7 @@ $(OSX): $(TTD)
$(Q)os/macosx/plistgen.sh "$(OSXAPP)" "$(REV)"
$(Q)cp os/macosx/track_starter "$(OSXAPP)"/Contents/MacOS
$(Q)ls os/macosx | grep -q "\.class" || \
- javac os/macosx/OpenTTDMidi.java
+ javac os/macosx/openttdmidi.java
$(Q)cp os/macosx/OpenTTDMidi.class "$(OSXAPP)"/Contents/MacOS
$(Q)cp data/* "$(OSXAPP)"/Contents/Data/
$(Q)cp lang/*.lng "$(OSXAPP)"/Contents/Lang/
@@ -896,7 +896,7 @@ rev.c: FORCE
@echo 'const char _openttd_revision[] = "$(REV)";' >>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.