Change into the correct packaging directory on MacOS X before removing

files.  Bug 290075, attachment 180667.  sr=mscott, a=dbaron
This commit is contained in:
cmp%mozilla.org 2005-04-14 04:03:24 +00:00
Родитель ad2735dcd0
Коммит 5a568f73e3
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -266,7 +266,11 @@ ifeq (,$(filter mozilla firefox,$(MOZ_PKG_APPNAME)))
endif
ifdef NO_PKG_FILES
@echo "Removing unpackaged files..."
ifeq ($(MOZ_PKG_FORMAT),DMG)
cd $(DIST)/$(MOZ_PKG_APPNAME)/$(_APPNAME)/Contents/MacOS; rm -rf $(NO_PKG_FILES)
else
cd $(DIST)/$(MOZ_PKG_APPNAME); rm -rf $(NO_PKG_FILES)
endif
endif
@echo "Compressing..."
cd $(DIST); $(MAKE_PACKAGE)