scons: fix subtle bug in scons usage resulting in lost paths on mac os x

This commit is contained in:
Dane Springmeyer 2010-02-22 23:50:16 +00:00
parent d093166b4a
commit 0356a8399e

View file

@ -814,7 +814,8 @@ if not preconfigured:
# re-append the local paths for mapnik sources to the beginning of the list
# to make sure they come before any plugins that were 'prepended'
env.PrependUnique(CPPPATH = ['#include', '#'], delete_existing=True)
env.PrependUnique(CPPPATH = '#include', delete_existing=True)
env.PrependUnique(CPPPATH = '#', delete_existing=True)
env.PrependUnique(LIBPATH = '#src', delete_existing=True)
# Decide which libagg to use