scons: remove dependence of agg headers on libmapnik to avoid constant re-installs

This commit is contained in:
Dane Springmeyer 2012-08-29 14:47:01 -07:00
parent de5970f45e
commit 9a8051fcf0

2
deps/agg/build.py vendored
View file

@ -35,7 +35,5 @@ if 'install' in COMMAND_LINE_TARGETS:
inc_target = os.path.normpath(env['INSTALL_PREFIX']+'/include/mapnik/agg')
# TODO - restrict to just agg headers used in mapnik includes?
includes = glob('./include/*.h')
# just for kicks wait till libmapnik is built to install headers
target = env.Install(inc_target, includes)
Depends(target, env.subst('../../src/%s' % env['MAPNIK_LIB_NAME']))
env.Alias(target='install', source=target)