From 7c0b28d4d7e23f170196f6bd4d42f7220a607a0c Mon Sep 17 00:00:00 2001 From: Dane Springmeyer Date: Mon, 22 Feb 2010 23:51:30 +0000 Subject: [PATCH] scons: fix subtle bug in scons usage resulting in lost paths on mac os x --- SConstruct | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/SConstruct b/SConstruct index b2d0b64f9..73bfa731a 100644 --- a/SConstruct +++ b/SConstruct @@ -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