mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1050560 - Preserve the ICU libraries order in config/external/icu/moz.build. r=mshal
This commit is contained in:
parent
e93b3d1687
commit
fc65f7c284
8
config/external/icu/moz.build
vendored
8
config/external/icu/moz.build
vendored
@ -9,10 +9,10 @@ LIBRARY_NAME = 'icu'
|
||||
if CONFIG['MOZ_NATIVE_ICU']:
|
||||
OS_LIBS += CONFIG['MOZ_ICU_LIBS']
|
||||
else:
|
||||
USE_LIBS += sorted(
|
||||
'%s/intl/icu/target/lib/%s%s' % (
|
||||
# Order needs to be preserved
|
||||
for l in CONFIG['ICU_LIB_NAMES']:
|
||||
USE_LIBS += ['%s/intl/icu/target/lib/%s%s' % (
|
||||
'static:' if not CONFIG['MOZ_SHARED_ICU'] else '',
|
||||
l,
|
||||
CONFIG['MOZ_ICU_DBG_SUFFIX']
|
||||
) for l in CONFIG['ICU_LIB_NAMES']
|
||||
)
|
||||
)]
|
||||
|
Loading…
Reference in New Issue
Block a user