mirror of
https://github.com/mapnik/mapnik.git
synced 2025-12-08 20:13:09 +00:00
scons: fix cxxflags concatenation
This commit is contained in:
parent
2c75feed65
commit
ecbfc4cdb4
@ -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…
x
Reference in New Issue
Block a user