scons: fix subtle bug in scons usage resulting in lost paths on mac os x
This commit is contained in:
parent
e4c952052d
commit
7c0b28d4d7
1 changed files with 2 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue