From 70be4df40f8a01f6fee31790037f486c719aa4c6 Mon Sep 17 00:00:00 2001 From: "Matt A. Tobin" Date: Mon, 9 Dec 2019 00:02:17 -0500 Subject: [PATCH] No Issue - Execute the precomplete command on *nix AltPackaging Windows does not need this as mar generation is dependent on the NSIS Installer which already contains the call --- toolkit/mozapps/installer/packager-uxp.mk | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/toolkit/mozapps/installer/packager-uxp.mk b/toolkit/mozapps/installer/packager-uxp.mk index 8d7cb4e62d..3125c04f13 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