Merge pull request #4424 from geofabrik/configure
Fix configure script for variables read from mapnik-settings.env
This commit is contained in:
commit
88652012a9
1 changed files with 3 additions and 1 deletions
4
configure
vendored
4
configure
vendored
|
@ -15,4 +15,6 @@ if [ -f mapnik-settings.env ]; then
|
||||||
. ./mapnik-settings.env
|
. ./mapnik-settings.env
|
||||||
fi
|
fi
|
||||||
|
|
||||||
$PYTHON scons/scons.py --implicit-deps-changed configure "$@"
|
VARS=( $(cat mapnik-settings.env) )
|
||||||
|
|
||||||
|
$PYTHON scons/scons.py --implicit-deps-changed configure ${VARS[*]} "$@"
|
||||||
|
|
Loading…
Reference in a new issue