2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-24 06:02:14 +00:00

Patch to fix scons issue

This commit is contained in:
Ankit Daftery
2011-05-28 12:47:37 +00:00
parent f0345b2521
commit 64b2c1697b

14
patch Normal file
View File

@@ -0,0 +1,14 @@
Index: SConscript
===================================================================
--- SConscript (revision 70774)
+++ SConscript (working copy)
@@ -10,7 +10,8 @@
)
bp_numpy_env = scons_tools.GetEnvironment().Clone()
bp_numpy_env.Append(CPPPATH=[os.path.abspath(os.curdir)])
-libpath = os.path.abspath("%s/python/numpy/src" % scons_tools.GetBuildDir())
+#libpath = os.path.abspath("%s/python/numpy/src" % scons_tools.GetBuildDir())
+libpath = os.path.abspath("libs/python/numpy/src")
if os.environ.has_key("LD_LIBRARY_PATH"):
bp_numpy_env["ENV"]["LD_LIBRARY_PATH"] = "%s:%s" % (libpath, os.environ["LD_LIBRARY_PATH"])
else: