update hello world build script
This commit is contained in:
parent
1d881af35a
commit
67682f1f36
1 changed files with 2 additions and 1 deletions
|
@ -16,6 +16,7 @@ import os
|
|||
PLUGIN_NAME = 'hello'
|
||||
|
||||
# Here we pull from the SCons environment exported from the main instance
|
||||
Import ('plugin_base')
|
||||
Import ('env')
|
||||
|
||||
# the below install details are also pulled from the
|
||||
|
@ -28,7 +29,7 @@ install_dest = env['MAPNIK_INPUT_PLUGINS_DEST']
|
|||
# clone the environment here
|
||||
# so that if we modify the env it in this file
|
||||
# those changes to not pollute other builds later on...
|
||||
plugin_env = env.Clone()
|
||||
plugin_env = plugin_base.Clone()
|
||||
|
||||
# Add the cpp files that need to be compiled
|
||||
plugin_sources = Split(
|
||||
|
|
Loading…
Reference in a new issue