mapnik-config build: fix relative path to libmapnik

This commit is contained in:
Dane Springmeyer 2013-12-18 09:08:38 -05:00
parent b492437505
commit 75b1761805

View file

@ -144,7 +144,7 @@ write_config(configuration,template,config_file)
target_path = os.path.normpath(os.path.join(config_env['INSTALL_PREFIX'],'bin')) target_path = os.path.normpath(os.path.join(config_env['INSTALL_PREFIX'],'bin'))
full_target = os.path.join(target_path,config_file) full_target = os.path.join(target_path,config_file)
Depends(full_target, env.subst('../../src/%s' % env['MAPNIK_LIB_NAME'])) Depends(full_target, env.subst('../src/%s' % env['MAPNIK_LIB_NAME']))
if 'install' in COMMAND_LINE_TARGETS: if 'install' in COMMAND_LINE_TARGETS:
# we must add 'install' catch here because otherwise # we must add 'install' catch here because otherwise