summaryrefslogtreecommitdiff
path: root/instsetoo_native
diff options
context:
space:
mode:
authorAndras Timar <andras.timar@collabora.com>2023-02-13 00:05:36 +0100
committerAndras Timar <andras.timar@collabora.com>2024-01-15 14:34:22 +0100
commit68ed04e21674cdf25991e374839ef0fd35a3f2b0 (patch)
tree17444bd2c4d0a263c3399bda1194ea8b201f46fc /instsetoo_native
parent94da47480fef9ae317e0218e7dc4e7fb31a3ac9c (diff)
[cp] multilingual DMG for macOS
Change-Id: Ib2c8e162c13099dc4ad324f89d68acdf97527199
Diffstat (limited to 'instsetoo_native')
-rw-r--r--instsetoo_native/CustomTarget_install.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/instsetoo_native/CustomTarget_install.mk b/instsetoo_native/CustomTarget_install.mk
index 333345ad26a3..276e2154d539 100644
--- a/instsetoo_native/CustomTarget_install.mk
+++ b/instsetoo_native/CustomTarget_install.mk
@@ -50,7 +50,7 @@ export instsetoo_OUT := $(WORKDIR)/installation
export LOCAL_OUT := $(instsetoo_OUT)
export LOCAL_COMMON_OUT := $(instsetoo_OUT)
-ifeq (WNT,$(OS))
+ifeq ($(filter $(OS),MACOSX WNT),$(OS))
instsetoo_installer_langs := $(subst $(WHITESPACE),$(COMMA),$(strip en-US $(filter-out en-US,$(gb_WITH_LANG))))
else
instsetoo_installer_langs := en-US
@@ -70,7 +70,7 @@ instsetoo_installer_targets := $(foreach pkgformat,$(PKGFORMAT),\
$(if $(filter ODK,$(BUILD_TYPE)),sdkoo‧en-US‧_SDK‧‧$(pkgformat)‧nostrip) \
$(if $(and $(filter HELP,$(BUILD_TYPE)),$(filter-out MACOSX,$(OS))), \
$(foreach lang,$(gb_HELP_LANGS),ooohelppack‧$(lang)‧‧-helppack‧$(pkgformat)‧nostrip)) \
- $(if $(filter-out WNT,$(OS)), \
+ $(if $(and $(filter-out WNT,$(OS)),$(filter-out MACOSX,$(OS))), \
$(foreach lang,$(filter-out en-US,$(gb_WITH_LANG)),ooolangpack‧$(lang)‧‧-languagepack‧$(pkgformat)‧nostrip)))
endif