Skip to content

Commit 43f38a7

Browse files
author
Robert Strong
committed
Mac v2 signing - Bug 1076370 - Fix Firefox.app l10n repacks for Mac v2 signing. r=jmaher
1 parent 862aa17 commit 43f38a7

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

b2g/installer/removed-files.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
# location which also work on other platforms.
55
#
66
# @DIR_MACOS@
7-
# Equals Contents/MacOS/ on Mac OX X and is an empty string on other platforms.
7+
# Equals Contents/MacOS/ on Mac OS X and is an empty string on other platforms.
88
#
99
# @DIR_RESOURCES@
10-
# Equals Contents/Resources/ on Mac OX X and is an empty string on other
10+
# Equals Contents/Resources/ on Mac OS X and is an empty string on other
1111
# platforms.
1212

1313
# Mac OS X v2 signing removals

browser/installer/removed-files.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,10 @@
5858
# location which also work on other platforms.
5959
#
6060
# @DIR_MACOS@
61-
# Equals Contents/MacOS/ on Mac OX X and is an empty string on other platforms.
61+
# Equals Contents/MacOS/ on Mac OS X and is an empty string on other platforms.
6262
#
6363
# @DIR_RESOURCES@
64-
# Equals Contents/Resources/ on Mac OX X and is an empty string on other
64+
# Equals Contents/Resources/ on Mac OS X and is an empty string on other
6565
# platforms.
6666

6767
# Common File Removals

toolkit/locales/l10n.mk

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ clobber-%:
6262
PACKAGER_NO_LIBS = 1
6363

6464
ifeq (cocoa,$(MOZ_WIDGET_TOOLKIT))
65-
STAGEDIST = $(_ABS_DIST)/l10n-stage/$(MOZ_PKG_DIR)/$(_APPNAME)/Contents/MacOS
65+
STAGEDIST = $(_ABS_DIST)/l10n-stage/$(MOZ_PKG_DIR)/$(_APPNAME)/Contents/Resources
6666
else
6767
STAGEDIST = $(_ABS_DIST)/l10n-stage/$(MOZ_PKG_DIR)
6868
endif
@@ -115,7 +115,7 @@ endif
115115
$(if $(filter omni,$(MOZ_PACKAGER_FORMAT)),$(if $(NON_OMNIJAR_FILES),--non-resource $(NON_OMNIJAR_FILES)))
116116
ifneq (en,$(AB))
117117
ifeq (cocoa,$(MOZ_WIDGET_TOOLKIT))
118-
mv $(_ABS_DIST)/l10n-stage/$(MOZ_PKG_DIR)/$(_APPNAME)/Contents/Resources/en.lproj $(_ABS_DIST)/l10n-stage/$(MOZ_PKG_DIR)/$(_APPNAME)/Contents/Resources/$(AB).lproj
118+
mv $(STAGEDIST)/en.lproj $(STAGEDIST)/$(AB).lproj
119119
endif
120120
endif
121121
$(NSINSTALL) -D $(DIST)/l10n-stage/$(PKG_PATH)
@@ -130,7 +130,7 @@ endif
130130
# packaging done, undo l10n stuff
131131
ifneq (en,$(AB))
132132
ifeq (cocoa,$(MOZ_WIDGET_TOOLKIT))
133-
mv $(_ABS_DIST)/l10n-stage/$(MOZ_PKG_DIR)/$(_APPNAME)/Contents/Resources/$(AB).lproj $(_ABS_DIST)/l10n-stage/$(MOZ_PKG_DIR)/$(_APPNAME)/Contents/Resources/en.lproj
133+
mv $(STAGEDIST)/$(AB).lproj $(STAGEDIST)/en.lproj
134134
endif
135135
endif
136136
$(NSINSTALL) -D $(DIST)/$(PKG_PATH)

0 commit comments

Comments
 (0)