summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-09-25 15:15:58 +0100
committerCarl Hetherington <cth@carlh.net>2015-09-25 15:15:58 +0100
commit7b9dcb418ca39dde37ea2a3fc4b55079e2b174bc (patch)
tree6986518696d617675da4656eef88e76008d80a96
parentb4d4e8123c00e37f3a1b39e81fed06e0adc6fc81 (diff)
More build fixes.
-rw-r--r--wscript5
1 files changed, 3 insertions, 2 deletions
diff --git a/wscript b/wscript
index 38b6fba74..c4e6fdf42 100644
--- a/wscript
+++ b/wscript
@@ -160,8 +160,9 @@ def configure(conf):
conf.check_cfg(package='libcurl', args='--cflags --libs', uselib_store='CURL', mandatory=True)
# libicu
- if conf.check_cfg(package='icu-i18n', args='--cflags --libs', uselib_store='ICU', mandatory=False) is None and conf.check_cfg(package='icu', args='--cflags --libs', uselib_store='ICU', mandatory=False) is None:
- Logs.pprint('RED', 'libicu not found')
+ if conf.check_cfg(package='icu-i18n', args='--cflags --libs', uselib_store='ICU', mandatory=False) is None:
+ if conf.check_cfg(package='icu', args='--cflags --libs', uselib_store='ICU', mandatory=False) is None:
+ Logs.pprint('RED', 'libicu not found')
# libsndfile
conf.check_cfg(package='sndfile', args='--cflags --libs', uselib_store='SNDFILE', mandatory=True)