Merge pull request #2406 from mapnik/user-specified-python
Allow user to specify a python executable.
This commit is contained in:
commit
afe770a708
4 changed files with 25 additions and 9 deletions
14
INSTALL.md
14
INSTALL.md
|
@ -4,8 +4,18 @@ Mapnik is cross platform and runs on Linux, Mac OSX, Solaris, *BSD, and Windows.
|
||||||
|
|
||||||
To configure and build Mapnik do:
|
To configure and build Mapnik do:
|
||||||
|
|
||||||
./configure
|
```bash
|
||||||
make
|
$ ./configure
|
||||||
|
$ make
|
||||||
|
```
|
||||||
|
|
||||||
|
To use a Python interpreter that is not named `python` for your build, do
|
||||||
|
something like the following instead:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
$ PYTHON=python2 ./configure
|
||||||
|
$ make PYTHON=python2
|
||||||
|
```
|
||||||
|
|
||||||
NOTE: the above will not work on windows, rather see https://github.com/mapnik/mapnik/wiki/WindowsInstallation
|
NOTE: the above will not work on windows, rather see https://github.com/mapnik/mapnik/wiki/WindowsInstallation
|
||||||
|
|
||||||
|
|
10
Makefile
10
Makefile
|
@ -7,6 +7,8 @@ endif
|
||||||
|
|
||||||
OS:=$(shell uname -s)
|
OS:=$(shell uname -s)
|
||||||
|
|
||||||
|
PYTHON = python
|
||||||
|
|
||||||
ifeq ($(JOBS),)
|
ifeq ($(JOBS),)
|
||||||
JOBS:=1
|
JOBS:=1
|
||||||
ifeq ($(OS),Linux)
|
ifeq ($(OS),Linux)
|
||||||
|
@ -20,13 +22,13 @@ endif
|
||||||
all: mapnik
|
all: mapnik
|
||||||
|
|
||||||
install:
|
install:
|
||||||
python scons/scons.py -j$(JOBS) --config=cache --implicit-cache --max-drift=1 install
|
$(PYTHON) scons/scons.py -j$(JOBS) --config=cache --implicit-cache --max-drift=1 install
|
||||||
|
|
||||||
mapnik:
|
mapnik:
|
||||||
python scons/scons.py -j$(JOBS) --config=cache --implicit-cache --max-drift=1
|
$(PYTHON) scons/scons.py -j$(JOBS) --config=cache --implicit-cache --max-drift=1
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
@python scons/scons.py -j$(JOBS) -c --config=cache --implicit-cache --max-drift=1
|
@$(PYTHON) scons/scons.py -j$(JOBS) -c --config=cache --implicit-cache --max-drift=1
|
||||||
@if test -e ".sconsign.dblite"; then rm ".sconsign.dblite"; fi
|
@if test -e ".sconsign.dblite"; then rm ".sconsign.dblite"; fi
|
||||||
@if test -e "config.log"; then rm "config.log"; fi
|
@if test -e "config.log"; then rm "config.log"; fi
|
||||||
@if test -e ".sconf_temp/"; then rm -r ".sconf_temp/"; fi
|
@if test -e ".sconf_temp/"; then rm -r ".sconf_temp/"; fi
|
||||||
|
@ -46,7 +48,7 @@ rebuild:
|
||||||
make uninstall && make clean && time make && make install
|
make uninstall && make clean && time make && make install
|
||||||
|
|
||||||
uninstall:
|
uninstall:
|
||||||
@python scons/scons.py -j$(JOBS) --config=cache --implicit-cache --max-drift=1 uninstall
|
@$(PYTHON) scons/scons.py -j$(JOBS) --config=cache --implicit-cache --max-drift=1 uninstall
|
||||||
|
|
||||||
test:
|
test:
|
||||||
@ ./run_tests
|
@ ./run_tests
|
||||||
|
|
4
configure
vendored
4
configure
vendored
|
@ -1,3 +1,5 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
python scons/scons.py --implicit-deps-changed configure "$@"
|
PYTHON=${PYTHON:-python}
|
||||||
|
|
||||||
|
$PYTHON scons/scons.py --implicit-deps-changed configure "$@"
|
||||||
|
|
|
@ -2,8 +2,10 @@
|
||||||
|
|
||||||
failures=0
|
failures=0
|
||||||
|
|
||||||
|
PYTHON=${PYTHON:-python}
|
||||||
|
|
||||||
echo "*** Running visual tests..."
|
echo "*** Running visual tests..."
|
||||||
python tests/visual_tests/test.py -q
|
$PYTHON tests/visual_tests/test.py -q
|
||||||
failures=$((failures+$?))
|
failures=$((failures+$?))
|
||||||
|
|
||||||
echo "*** Running C++ tests..."
|
echo "*** Running C++ tests..."
|
||||||
|
@ -15,7 +17,7 @@ done
|
||||||
echo
|
echo
|
||||||
|
|
||||||
echo "*** Running python tests..."
|
echo "*** Running python tests..."
|
||||||
python tests/run_tests.py -q
|
$PYTHON tests/run_tests.py -q
|
||||||
failures=$((failures+$?))
|
failures=$((failures+$?))
|
||||||
|
|
||||||
exit $failures
|
exit $failures
|
||||||
|
|
Loading…
Reference in a new issue