diff options
author | adeshkp <adeshkp@users.noreply.github.com> | 2019-07-18 11:21:40 -0400 |
---|---|---|
committer | adeshkp <adeshkp@users.noreply.github.com> | 2019-07-18 11:21:40 -0400 |
commit | 4e464892a2b547a6a0ed30d47d2de39d30a4d32a (patch) | |
tree | a026d38b33b1ca03b27c0a3515081ad9f2305042 /toolkit/locales | |
parent | c4d192b49246ed72e2b857452b557ef1bef83c58 (diff) | |
download | UXP-4e464892a2b547a6a0ed30d47d2de39d30a4d32a.tar UXP-4e464892a2b547a6a0ed30d47d2de39d30a4d32a.tar.gz UXP-4e464892a2b547a6a0ed30d47d2de39d30a4d32a.tar.lz UXP-4e464892a2b547a6a0ed30d47d2de39d30a4d32a.tar.xz UXP-4e464892a2b547a6a0ed30d47d2de39d30a4d32a.zip |
Issue #701 - Support spaces in Mac app name
Diffstat (limited to 'toolkit/locales')
-rw-r--r-- | toolkit/locales/l10n.mk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/toolkit/locales/l10n.mk b/toolkit/locales/l10n.mk index 05bda0b56..f1825438d 100644 --- a/toolkit/locales/l10n.mk +++ b/toolkit/locales/l10n.mk @@ -112,13 +112,13 @@ repackage-zip: UNPACKAGE='$(ZIP_IN)' repackage-zip: libs-$(AB_CD) # call a hook for apps to put their uninstall helper.exe into the package $(UNINSTALLER_PACKAGE_HOOK) - $(PYTHON) $(MOZILLA_DIR)/toolkit/mozapps/installer/l10n-repack.py $(STAGEDIST) $(DIST)/xpi-stage/locale-$(AB_CD) \ + $(PYTHON) $(MOZILLA_DIR)/toolkit/mozapps/installer/l10n-repack.py '$(STAGEDIST)' $(DIST)/xpi-stage/locale-$(AB_CD) \ $(MOZ_PKG_EXTRAL10N) \ $(if $(filter omni,$(MOZ_PACKAGER_FORMAT)),$(if $(NON_OMNIJAR_FILES),--non-resource $(NON_OMNIJAR_FILES))) ifeq (cocoa,$(MOZ_WIDGET_TOOLKIT)) ifneq (en,$(LPROJ_ROOT)) - mv $(STAGEDIST)/en.lproj $(STAGEDIST)/$(LPROJ_ROOT).lproj + mv '$(STAGEDIST)'/en.lproj '$(STAGEDIST)'/$(LPROJ_ROOT).lproj endif endif @@ -133,7 +133,7 @@ endif # packaging done, undo l10n stuff ifneq (en,$(LPROJ_ROOT)) ifeq (cocoa,$(MOZ_WIDGET_TOOLKIT)) - mv $(STAGEDIST)/$(LPROJ_ROOT).lproj $(STAGEDIST)/en.lproj + mv '$(STAGEDIST)'/$(LPROJ_ROOT).lproj '$(STAGEDIST)'/en.lproj endif endif $(NSINSTALL) -D $(DIST)/$(PKG_PATH) @@ -197,7 +197,7 @@ endif generate-snippet-%: $(PYTHON) $(MOZILLA_DIR)/tools/update-packaging/generatesnippet.py \ --mar-path=$(ABS_DIST)/update \ - --application-ini-file=$(STAGEDIST)/application.ini \ + --application-ini-file='$(STAGEDIST)'/application.ini \ --locale=$* \ --product=$(MOZ_PKG_APPNAME) \ --platform=$(MOZ_PKG_PLATFORM) \ |