|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r68210 - sandbox/python_extensions
From: talljimbo_at_[hidden]
Date: 2011-01-17 15:02:12
Author: jbosch
Date: 2011-01-17 15:02:11 EST (Mon, 17 Jan 2011)
New Revision: 68210
URL: http://svn.boost.org/trac/boost/changeset/68210
Log:
Boost.Python extensions - removing malfunctioning variant build directories
Text files modified:
sandbox/python_extensions/SConscript | 11 ++---------
1 files changed, 2 insertions(+), 9 deletions(-)
Modified: sandbox/python_extensions/SConscript
==============================================================================
--- sandbox/python_extensions/SConscript (original)
+++ sandbox/python_extensions/SConscript 2011-01-17 15:02:11 EST (Mon, 17 Jan 2011)
@@ -20,11 +20,7 @@
bp_extensions_env.SetupPackages(["boost.python"])
Export("bp_extensions_env")
-targets["boost.python.extensions"]["lib"] = (
- SConscript("libs/python/src/SConscript",
- variant_dir="%s/python/src" % scons_tools.GetBuildDir(),
- duplicate=False)
- )
+targets["boost.python.extensions"]["lib"] = SConscript("libs/python/src/SConscript")
targets["boost.python.extensions"]["install"] = (
bp_extensions_env.RecursiveInstall(
os.path.join(bp_extensions_env["INSTALL_HEADERS"], "boost"),
@@ -32,9 +28,6 @@
regex="(.*\.hpp)")
+ bp_extensions_env.Install(bp_extensions_env["INSTALL_LIB"], targets["boost.python.extensions"]["lib"])
)
-targets["boost.python.extensions"]["test"] = (
- SConscript("libs/python/test/SConscript",
- variant_dir="%s/python/test" % scons_tools.GetBuildDir())
- )
+targets["boost.python.extensions"]["test"] = SConscript("libs/python/test/SConscript")
Return("targets")
Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk