add back depedence of hello world plugin on libmapnik accidentally removed in refactoring in 3e67c1d694

This commit is contained in:
Dane Springmeyer 2013-01-13 22:16:43 -08:00
parent dca04fc9d4
commit 2c28219e4c

View file

@ -68,6 +68,9 @@ TARGET = plugin_env.SharedLibrary(
LINKFLAGS=env.get('CUSTOM_LDFLAGS') LINKFLAGS=env.get('CUSTOM_LDFLAGS')
) )
# if the plugin links to libmapnik ensure it is built first
Depends(TARGET, env.subst('../../../../src/%s' % env['MAPNIK_LIB_NAME']))
# if 'uninstall' is not passed on the command line # if 'uninstall' is not passed on the command line
# then we actually create the install targets that # then we actually create the install targets that
# scons will install if 'install' is passed as an arg # scons will install if 'install' is passed as an arg