From 284847a5dcd56240891dae3a08527e43e9d9cdfe Mon Sep 17 00:00:00 2001 From: Sasa Bodiroza Date: Fri, 14 Aug 2009 14:34:50 +0200 Subject: * xpi.mk: - add MOX_XPI_EXCLUDE_FILES parameter to enable exclusion of some files and/or directories, if needed --- src/xpi.mk | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src') diff --git a/src/xpi.mk b/src/xpi.mk index cfe2aaf..a5882b4 100644 --- a/src/xpi.mk +++ b/src/xpi.mk @@ -52,6 +52,9 @@ # usually xpi.mk creates the right links based on targetApplication # parsed in install.rdf; if you need more directories, use this. # +# MOZ_XPI_EXCLUDE_FILES (OPTIONAL): +# defines extra directories and files which should be excluded +# during preparation of the XPI file. # # Deprecated variables: # @@ -180,7 +183,11 @@ endif # ### general helper targets stamp-unzip-%: $(XPI_FILE) [ -d $(TEMPDIR) ] || mkdir -p $(TEMPDIR) +ifneq (,$(MOZ_XPI_EXCLUDE_FILES)) + unzip -d $(TEMPDIR) $(XPI_DIR)$* -x $(MOZ_XPI_EXCLUDE_FILES) +else unzip -d $(TEMPDIR) $(XPI_DIR)$* +endif touch $@ stamp-installlinks-%: -- cgit v1.2.3