mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
[Windows only] use absolute paths for Bug 575838 - Build scripts should be able to handle @BINPATH@/extensions/testpilot@labs.mozilla.com/* in package-manifest.in for the installer. r=ted.mielczarek, approval2.0=benjamin
This commit is contained in:
parent
351157389a
commit
50bc6e17cd
@ -65,10 +65,6 @@ MOZ_NONLOCALIZED_PKG_LIST = \
|
||||
|
||||
MOZ_LOCALIZED_PKG_LIST = $(AB_CD)
|
||||
|
||||
MOZ_OPTIONAL_PKG_LIST = \
|
||||
adt \
|
||||
$(NULL)
|
||||
|
||||
DEFINES += -DAB_CD=$(AB_CD) -DMOZ_APP_NAME=$(MOZ_APP_NAME) -DPREF_DIR=$(PREF_DIR)
|
||||
ifdef MOZ_ENABLE_GNOME_COMPONENT
|
||||
DEFINES += -DMOZ_ENABLE_GNOME_COMPONENT=1
|
||||
|
@ -349,19 +349,19 @@ endif
|
||||
@$(NSINSTALL) -D $(DEPTH)/installer-stage/localized
|
||||
@$(NSINSTALL) -D $(DEPTH)/installer-stage/optional
|
||||
@$(NSINSTALL) -D $(DIST)/xpt
|
||||
$(call PACKAGER_COPY, "$(DIST)",\
|
||||
"$(DEPTH)/installer-stage/nonlocalized", \
|
||||
"$(MOZ_PKG_MANIFEST)", "$(PKGCP_OS)", 1, 0, 1 \
|
||||
$(foreach pkg,$(MOZ_NONLOCALIZED_PKG_LIST),$(PKG_ARG)) )
|
||||
$(call PACKAGER_COPY, "$(DIST)",\
|
||||
"$(DEPTH)/installer-stage/localized", \
|
||||
"$(MOZ_PKG_MANIFEST)", "$(PKGCP_OS)", 1, 0, 1 \
|
||||
$(foreach pkg,$(MOZ_LOCALIZED_PKG_LIST),$(PKG_ARG)) )
|
||||
$(call PACKAGER_COPY, "$(call core_abspath,$(DIST))",\
|
||||
"$(call core_abspath,$(DEPTH)/installer-stage/nonlocalized)", \
|
||||
"$(MOZ_PKG_MANIFEST)", "$(PKGCP_OS)", 1, 0, 1 \
|
||||
$(foreach pkg,$(MOZ_NONLOCALIZED_PKG_LIST),$(PKG_ARG)) )
|
||||
$(call PACKAGER_COPY, "$(call core_abspath,$(DIST))",\
|
||||
"$(call core_abspath,$(DEPTH)/installer-stage/localized)", \
|
||||
"$(MOZ_PKG_MANIFEST)", "$(PKGCP_OS)", 1, 0, 1 \
|
||||
$(foreach pkg,$(MOZ_LOCALIZED_PKG_LIST),$(PKG_ARG)) )
|
||||
ifdef MOZ_OPTIONAL_PKG_LIST
|
||||
$(call PACKAGER_COPY, "$(DIST)",\
|
||||
"$(DEPTH)/installer-stage/optional", \
|
||||
"$(MOZ_PKG_MANIFEST)", "$(PKGCP_OS)", 1, 0, 1 \
|
||||
$(foreach pkg,$(MOZ_OPTIONAL_PKG_LIST),$(PKG_ARG)) )
|
||||
$(call PACKAGER_COPY, "$(call core_abspath,$(DIST))",\
|
||||
"$(call core_abspath,$(DEPTH)/installer-stage/optional)", \
|
||||
"$(MOZ_PKG_MANIFEST)", "$(PKGCP_OS)", 1, 0, 1 \
|
||||
$(foreach pkg,$(MOZ_OPTIONAL_PKG_LIST),$(PKG_ARG)) )
|
||||
endif
|
||||
$(PERL) $(MOZILLA_DIR)/xpinstall/packager/xptlink.pl -s $(DIST) -d $(DIST)/xpt -f $(DEPTH)/installer-stage/nonlocalized/components -v -x "$(XPIDL_LINK)"
|
||||
$(PYTHON) $(MOZILLA_DIR)/toolkit/mozapps/installer/link-manifests.py $(DIST)/manifests $(DEPTH)/installer-stage/nonlocalized
|
||||
@ -379,8 +379,8 @@ ifndef UNIVERSAL_BINARY
|
||||
ifdef MOZ_PKG_MANIFEST
|
||||
$(RM) -rf $(DIST)/xpt $(RM) -rf $(DIST)/manifests
|
||||
$(call PACKAGER_COPY, "$(call core_abspath,$(DIST))",\
|
||||
"$(call core_abspath,$(DIST)/$(MOZ_PKG_DIR))", \
|
||||
"$(MOZ_PKG_MANIFEST)", "$(PKGCP_OS)", 1, 0, 1)
|
||||
"$(call core_abspath,$(DIST)/$(MOZ_PKG_DIR))", \
|
||||
"$(MOZ_PKG_MANIFEST)", "$(PKGCP_OS)", 1, 0, 1)
|
||||
$(PERL) $(MOZILLA_DIR)/xpinstall/packager/xptlink.pl -s $(DIST) -d $(DIST)/xpt -f $(DIST)/$(MOZ_PKG_DIR)/$(_BINPATH)/components -v -x "$(XPIDL_LINK)"
|
||||
$(PYTHON) $(MOZILLA_DIR)/toolkit/mozapps/installer/link-manifests.py $(DIST)/manifests $(DIST)/$(MOZ_PKG_DIR)/$(_BINPATH)
|
||||
else # !MOZ_PKG_MANIFEST
|
||||
|
Loading…
Reference in New Issue
Block a user