From b74738dd9167b88483cb93912094ce0d7b920c5b Mon Sep 17 00:00:00 2001 From: Dane Springmeyer Date: Fri, 6 Jul 2012 18:31:36 -0700 Subject: [PATCH] scons: make a failure to link boost_python non-fatal --- SConstruct | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SConstruct b/SConstruct index 68d665468..b087233a6 100644 --- a/SConstruct +++ b/SConstruct @@ -1345,8 +1345,8 @@ if not preconfigured: if not conf.CheckLibWithHeader(libs=[env['BOOST_PYTHON_LIB']], header='boost/python/detail/config.hpp', language='C++'): color_print(1, 'Could not find library "%s" for boost python bindings' % env['BOOST_PYTHON_LIB']) - env['MISSING_DEPS'].append('boost python') - + # failing on launchpad, so let's make it a warning for now + #env['MISSING_DEPS'].append('boost python') if env['CAIRO']: if conf.CheckPKGConfig('0.15.0') and conf.CheckPKG('pycairo'):