From d9485b696e0bbe0f0880b6075b9b9f1ac9fd81ac Mon Sep 17 00:00:00 2001 From: jeremiah sypult Date: Thu, 18 Jul 2013 11:29:23 -0500 Subject: [PATCH] Makefile builds fall back to traditional archiving when Mac OS X application bundle generation fails --- Makefile | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/Makefile b/Makefile index ec69a9eb..0146e8c7 100644 --- a/Makefile +++ b/Makefile @@ -1205,9 +1205,6 @@ endif NAKED_TARGETS=$(shell echo $(TARGETS) | sed -e "s!$(B)/!!g") -#MACOSX_TARGET_STRING=$(shell if [ "$(B)" == "$(BR)" ]; then echo "release"; elif [ "$(B)" == "$(BD)" ]; then echo "debug"; fi) -MACOSX_MAKE_APP=@if [ -x "./make-macosx-app.sh" ]; then "./make-macosx-app.sh" release $(ARCH); fi - print_list=@for i in $(1); \ do \ echo " $$i"; \ @@ -1264,9 +1261,7 @@ endif $(B).zip: $(TARGETS) ifeq ($(PLATFORM),darwin) ifdef ARCHIVE - $(call MACOSX_MAKE_APP) - @rm -f $@ - @(if [ -d "$(B)/ioquake3.app" ]; then cd $(B) && zip --symlinks -r9 ../../$@ `find "ioquake3.app" -print | sed -e "s!$(B)/!!g"`; fi) + @("./make-macosx-app.sh" release $(ARCH); if [ "$$?" -eq 0 ] && [ -d "$(B)/ioquake3.app" ]; then rm -f $@; cd $(B) && zip --symlinks -r9 ../../$@ `find "ioquake3.app" -print | sed -e "s!$(B)/!!g"`; else rm -f $@; cd $(B) && zip -r9 ../../$@ $(NAKED_TARGETS); fi) endif endif ifneq ($(PLATFORM),darwin)