diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-09-25 15:15:58 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-09-25 15:15:58 +0100 |
| commit | 7b9dcb418ca39dde37ea2a3fc4b55079e2b174bc (patch) | |
| tree | 6986518696d617675da4656eef88e76008d80a96 /wscript | |
| parent | b4d4e8123c00e37f3a1b39e81fed06e0adc6fc81 (diff) | |
More build fixes.
Diffstat (limited to 'wscript')
| -rw-r--r-- | wscript | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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) |
