summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwolfbeast <mcwerewolf@wolfbeast.com>2019-12-09 10:04:34 +0100
committerwolfbeast <mcwerewolf@wolfbeast.com>2019-12-09 10:04:34 +0100
commit319d485e234dff3f59ac2e98ccf4c32a1aa43642 (patch)
tree4f0baf6654272dfb62ccaa2f7c9338bf954d19a0
parent7b3ececb8d2fac8f779b6e8971c84ba9f322d1ad (diff)
parent1110944d4b3dffbd822d22ad2cc75a32eda718d7 (diff)
downloadUXP-319d485e234dff3f59ac2e98ccf4c32a1aa43642.tar
UXP-319d485e234dff3f59ac2e98ccf4c32a1aa43642.tar.gz
UXP-319d485e234dff3f59ac2e98ccf4c32a1aa43642.tar.lz
UXP-319d485e234dff3f59ac2e98ccf4c32a1aa43642.tar.xz
UXP-319d485e234dff3f59ac2e98ccf4c32a1aa43642.zip
Merge branch 'release' into Pale_Moon-releasePM28.8.0_Release
-rw-r--r--toolkit/mozapps/installer/packager-uxp.mk4
1 files changed, 4 insertions, 0 deletions
diff --git a/toolkit/mozapps/installer/packager-uxp.mk b/toolkit/mozapps/installer/packager-uxp.mk
index 8d7cb4e62..3125c04f1 100644
--- a/toolkit/mozapps/installer/packager-uxp.mk
+++ b/toolkit/mozapps/installer/packager-uxp.mk
@@ -18,6 +18,10 @@ else
ifeq (WINNT,$(OS_ARCH))
cd $(DIST); $(CYGWIN_WRAPPER) 7z a -t7z -m0=lzma2 -mx=9 -aoa -bb3 $(PKG_BASENAME).7z $(MOZ_PKG_DIR)
else
+ # Other platforms such as Linux need the Package routine to spawn a pre-complete file
+ # Windows does not require this because it is dependent on generating the NSIS
+ # Installer which has its own call to generate the precomplete file
+ cd $(DIST)/$(MOZ_PKG_DIR); $(CREATE_PRECOMPLETE_CMD)
cd $(DIST); XZ_OPT=-9e $(TAR) cfJv $(PKG_BASENAME).tar.xz $(MOZ_PKG_DIR)
endif
endif