diff options
author | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-01-29 15:13:55 +0100 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-01-29 15:13:55 +0100 |
commit | 00a5321c958de1f378ac9dacafb6f81ded57441e (patch) | |
tree | 7922f80956c0cac29b2324dd59483df3a4530790 /config/external | |
parent | e57998f68bfbfdd4408eacd0ba29419771a588bd (diff) | |
download | uxp-00a5321c958de1f378ac9dacafb6f81ded57441e.tar.gz |
Issue #1342 - Remove support for system ICU
Diffstat (limited to 'config/external')
-rw-r--r-- | config/external/icu/moz.build | 22 |
1 files changed, 10 insertions, 12 deletions
diff --git a/config/external/icu/moz.build b/config/external/icu/moz.build index 248652a85d..488a02159f 100644 --- a/config/external/icu/moz.build +++ b/config/external/icu/moz.build @@ -6,16 +6,14 @@ Library('icu') -if CONFIG['MOZ_SYSTEM_ICU']: - OS_LIBS += CONFIG['MOZ_ICU_LIBS'] +DIRS += [ + 'common', + 'data', + 'i18n', +] + +if CONFIG['MOZ_ICU_DATA_ARCHIVE']: + DIRS += ['stubdata'] + USE_LIBS += ['icustubdata'] else: - DIRS += [ - 'common', - 'data', - 'i18n', - ] - if CONFIG['MOZ_ICU_DATA_ARCHIVE']: - DIRS += ['stubdata'] - USE_LIBS += ['icustubdata'] - else: - USE_LIBS += ['icudata'] + USE_LIBS += ['icudata'] |