fix make python for non-bash shells
This commit is contained in:
parent
dcfa0b655c
commit
d3baf8041a
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -13,7 +13,7 @@ install:
|
|||
$(PYTHON) scons/scons.py -j$(JOBS) --config=cache --implicit-cache --max-drift=1 install
|
||||
|
||||
python:
|
||||
if [[ ! -d ./bindings/python ]]; then git clone git@github.com:mapnik/python-mapnik.git --recursive ./bindings/python; else (cd bindings/python && git pull && git submodule update --init); fi;
|
||||
if [ ! -d ./bindings/python ]; then git clone git@github.com:mapnik/python-mapnik.git --recursive ./bindings/python; else (cd bindings/python && git pull && git submodule update --init); fi;
|
||||
make
|
||||
python bindings/python/test/visual.py -q
|
||||
|
||||
|
|
Loading…
Reference in a new issue