scons: fix cxxflags concatenation
This commit is contained in:
parent
2c75feed65
commit
ecbfc4cdb4
1 changed files with 2 additions and 2 deletions
|
@ -53,9 +53,9 @@ def write_config(configuration,template,config_file):
|
|||
|
||||
|
||||
# todo - refine this list
|
||||
cpp_paths = ''.join([' -I%s' % i for i in config_env['CPPPATH'] if not i.startswith('#')])
|
||||
other_includes = ''.join([' -I%s' % i for i in config_env['CPPPATH'] if not i.startswith('#')])
|
||||
|
||||
other_includes = config_env['LIBMAPNIK_CXXFLAGS'] + cpp_paths
|
||||
other_includes += ' '.join(config_env['LIBMAPNIK_CXXFLAGS'])
|
||||
|
||||
ldflags = config_env['CUSTOM_LDFLAGS'] + ''.join([' -L%s' % i for i in config_env['LIBPATH'] if not i.startswith('#')])
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue