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:51:30 +00:00
parent e4c952052d
commit 7c0b28d4d7

View file

@ -817,7 +817,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