added python_win_prefix variable.

On windows this needs to be a backslash, unlike all the other variables
which need to be regular slashes. Therefore, I had to create a new variable
to do this.
This commit is contained in:
Harry Moffat 2004-08-10 18:16:55 +00:00
parent bd33a52835
commit facae48294

View file

@ -65,7 +65,7 @@ minbuild:
install:
ifeq (@local_python_inst@,1)
(@PYTHON_CMD@ setup.py install --prefix="@python_prefix@")
(@PYTHON_CMD@ setup.py install --prefix="@python_win_prefix@")
else
(@PYTHON_CMD@ setup.py install)
endif