summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Cournapeau <cournape@gmail.com>2009-07-27 04:44:00 +0000
committerDavid Cournapeau <cournape@gmail.com>2009-07-27 04:44:00 +0000
commitd13418af41bfad221d2ef2a1e58ef8b917a42253 (patch)
tree204bd31a03e34791a4e8de121ba8a193c7564af7
parent25c9ca8ad2da7b062738f9013af79288b05d1b87 (diff)
downloadnumpy-d13418af41bfad221d2ef2a1e58ef8b917a42253.tar.gz
BUG: path sep escaping necessary on windows for numscons build.
-rw-r--r--numpy/core/SConscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/SConscript b/numpy/core/SConscript
index f99b8e5d9..fffbee5af 100644
--- a/numpy/core/SConscript
+++ b/numpy/core/SConscript
@@ -334,7 +334,7 @@ env.Prepend(LIBS=["npymath"])
env.Prepend(LIBPATH=["."])
subst_dict = {'@prefix@': '$distutils_install_prefix',
- '@sep@': os.path.sep}
+ '@sep@': repr(os.path.sep)}
npymath_ini = env.SubstInFile(pjoin('lib', 'npy-pkg-config', 'npymath.ini'),
'npymath.ini.in', SUBST_DICT=subst_dict)