Bug 461309: Let browser/installer/Makefile.in permit 'make clean' in debug builds. r=bsmedberg

Check for debug builds only for the targets that matter.  The 'clean'
and 'distclean' targets, for example, may need to recur into
browser/installer/Makefile.in.
This commit is contained in:
Jim Blandy 2008-12-19 10:13:25 -08:00
Родитель ca43197916
Коммит f7491b4ec9
1 изменённых файлов: 8 добавлений и 2 удалений

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

@ -68,7 +68,13 @@ MOZ_PKG_MANIFEST_P = $(srcdir)/unix/packages-static
endif
endif
else
$(error you need a "--enable-static or --enable-libxul" build to package a build)
define message
Please don't package debug builds.
Your build was configured without --enable-static or --enable-libxul.
This is probably because it's a debug build
endef
default libs installer::
$(error $(message))
endif
MOZ_NONLOCALIZED_PKG_LIST = \
@ -106,7 +112,7 @@ endif
include $(topsrcdir)/toolkit/mozapps/installer/packager.mk
installer: removed-files
installer:: removed-files
ifdef INSTALLER_DIR
$(MAKE) -C $(INSTALLER_DIR)
endif