diff options
author | Sasa Bodiroza <jazzva@gmail.com> | 2009-08-14 14:34:50 +0200 |
---|---|---|
committer | Sasa Bodiroza <jazzva@gmail.com> | 2009-08-14 14:34:50 +0200 |
commit | 284847a5dcd56240891dae3a08527e43e9d9cdfe (patch) | |
tree | ef86a9357399f5a98d09327ebeb54f24413c6a45 /src | |
parent | 8355baef8c0778d6f1eaa983f6b48ce49a5f92cf (diff) |
* xpi.mk:
- add MOX_XPI_EXCLUDE_FILES parameter to enable exclusion of some files
and/or directories, if needed
Diffstat (limited to 'src')
-rw-r--r-- | src/xpi.mk | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -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-%: |