move mapnik-config back to utils/
This commit is contained in:
parent
63f2171edc
commit
a0dc3df575
4 changed files with 4 additions and 4 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -19,7 +19,7 @@ demo/viewer/viewer.ini
|
||||||
tests/cpp_tests/font_registration_test
|
tests/cpp_tests/font_registration_test
|
||||||
tests/python_tests/raster_colorizer_test.png
|
tests/python_tests/raster_colorizer_test.png
|
||||||
tests/python_tests/raster_colorizer_test_save.xml
|
tests/python_tests/raster_colorizer_test_save.xml
|
||||||
bin/mapnik-config
|
utils/mapnik-config/mapnik-config
|
||||||
utils/shapeindex/shapeindex
|
utils/shapeindex/shapeindex
|
||||||
utils/ogrindex/ogrindex
|
utils/ogrindex/ogrindex
|
||||||
utils/pgsql2sqlite/pgsql2sqlite
|
utils/pgsql2sqlite/pgsql2sqlite
|
||||||
|
|
|
@ -2022,8 +2022,8 @@ if not HELP_REQUESTED:
|
||||||
if env['BENCHMARK']:
|
if env['BENCHMARK']:
|
||||||
SConscript('benchmark/build.py')
|
SConscript('benchmark/build.py')
|
||||||
|
|
||||||
# install pkg-config script and mapnik-config script
|
# install mapnik-config script
|
||||||
SConscript('bin/build.py')
|
SConscript('utils/mapnik-config/build.py')
|
||||||
|
|
||||||
# write the viewer.ini file
|
# write the viewer.ini file
|
||||||
SConscript('demo/viewer/build.py')
|
SConscript('demo/viewer/build.py')
|
||||||
|
|
|
@ -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
|
Loading…
Reference in a new issue