fix logic around icudata linking

This commit is contained in:
Dane Springmeyer 2011-11-02 18:52:31 -04:00
parent 4f9c10fb05
commit 0787fa242e

View file

@ -70,10 +70,10 @@ if env['THREADING'] == 'multi':
lib_env['LIBS'].append('boost_thread%s' % env['BOOST_APPEND'])
if not env['RUNTIME_LINK'] == 'static':
if env['RUNTIME_LINK'] == 'static':
if 'icuuc' in env['ICU_LIB_NAME']:
lib_env['LIBS'].append('icudata')
else:
if env['INTERNAL_LIBAGG']:
lib_env['LIBS'].insert(0, 'agg')
else: