From: Carl Hetherington Date: Fri, 25 Sep 2015 14:15:58 +0000 (+0100) Subject: More build fixes. X-Git-Tag: v2.3.6~12 X-Git-Url: https://git.carlh.net/gitweb/?a=commitdiff_plain;h=7b9dcb418ca39dde37ea2a3fc4b55079e2b174bc;p=dcpomatic.git More build fixes. --- 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)