diff options
author | Job Bautista <jobbautista9@aol.com> | 2023-03-24 17:45:16 +0800 |
---|---|---|
committer | Job Bautista <jobbautista9@aol.com> | 2023-03-24 17:45:16 +0800 |
commit | ee870812ffeac2731af182d8388367635e84242d (patch) | |
tree | 7aeeacf67346a912bc4cb3ef56d38cd8f5b63fb9 /intl | |
parent | 0c63f5a27346875dd04c8bb41eced35203d20567 (diff) | |
download | uxp-ee870812ffeac2731af182d8388367635e84242d.tar.gz |
Revert "Issue #2165 - Follow-up: No longer support bundling the ICU data file into packaging, fold it into the ICU shared library, and always build ICU shared."
This reverts commit 0c63f5a27346875dd04c8bb41eced35203d20567.
Building shared ICU is currently broken in non-Windows, so we need the option for now.
Diffstat (limited to 'intl')
-rw-r--r-- | intl/unicharutil/util/moz.build | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/intl/unicharutil/util/moz.build b/intl/unicharutil/util/moz.build index 0173ddb03d..64d455f91c 100644 --- a/intl/unicharutil/util/moz.build +++ b/intl/unicharutil/util/moz.build @@ -25,9 +25,9 @@ include('objs.mozbuild') UNIFIED_SOURCES += intl_unicharutil_util_cppsrcs # This line breaks building ICU as a shared library due to a -# SandboxValidationError from the frontend reader, so -# commenting it out. -# Library('unicharutil_external_s') +# SandboxValidationError from the frontend reader. +if not CONFIG['MOZ_SHARED_ICU']: + Library('unicharutil_external_s') FORCE_STATIC_LIB = True |