diff options
Diffstat (limited to 'os/macosx/Makefile')
-rw-r--r-- | os/macosx/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/os/macosx/Makefile b/os/macosx/Makefile index 217569db4..cc425ed4a 100644 --- a/os/macosx/Makefile +++ b/os/macosx/Makefile @@ -42,6 +42,9 @@ endif ifndef LIPO LIPO := lipo endif +ifndef STRIP +STRIP := strip +endif # targets to link OpenTTD $(TTD): $(OTTD_PPC) $(OTTD_i386) $(OTTD_PPC970) @@ -101,7 +104,7 @@ endif # manual strip, as the -s option fails $(OSX_STRIP): $(TTD) - $(Q)strip openttd + $(Q)$(STRIP) openttd ifdef JAGUAR JAGUAR_POSTFIX := -jaguar |