From facae482941d2299a6ddb1990e6672ac80dc55ab Mon Sep 17 00:00:00 2001 From: Harry Moffat Date: Tue, 10 Aug 2004 18:16:55 +0000 Subject: [PATCH] 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. --- Cantera/python/Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cantera/python/Makefile.in b/Cantera/python/Makefile.in index e64e67c7e..92fd0d706 100755 --- a/Cantera/python/Makefile.in +++ b/Cantera/python/Makefile.in @@ -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