scons: copy env setting
This commit is contained in:
parent
da834706c6
commit
c4deda8fce
1 changed files with 3 additions and 1 deletions
|
@ -19,6 +19,8 @@
|
|||
#
|
||||
# $Id$
|
||||
|
||||
from copy import copy
|
||||
|
||||
Import ('env')
|
||||
|
||||
prefix = env['PREFIX']
|
||||
|
@ -34,7 +36,7 @@ demo_env = env.Clone()
|
|||
|
||||
headers = env['CPPPATH']
|
||||
|
||||
libraries = env['LIBMAPNIK_LIBS']
|
||||
libraries = copy(env['LIBMAPNIK_LIBS'])
|
||||
boost_program_options = 'boost_program_options%s' % env['BOOST_APPEND']
|
||||
libraries.extend([boost_program_options,'mapnik2'])
|
||||
|
||||
|
|
Loading…
Reference in a new issue