|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r64354 - trunk/tools/build/v2
From: ghost_at_[hidden]
Date: 2010-07-26 05:21:54
Author: vladimir_prus
Date: 2010-07-26 05:21:53 EDT (Mon, 26 Jul 2010)
New Revision: 64354
URL: http://svn.boost.org/trac/boost/changeset/64354
Log:
Fix grabbing of BOOST_BUILD_PATH from environment
Text files modified:
trunk/tools/build/v2/build_system.py | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
Modified: trunk/tools/build/v2/build_system.py
==============================================================================
--- trunk/tools/build/v2/build_system.py (original)
+++ trunk/tools/build/v2/build_system.py 2010-07-26 05:21:53 EDT (Mon, 26 Jul 2010)
@@ -1,4 +1,6 @@
-# Status: being ported by Vladimir Prus.
+# Status: mostly ported. Missing is --out-xml support, 'configure' integration
+# and some FIXME.
+# Base revision: 64351
# Copyright 2003, 2005 Dave Abrahams
# Copyright 2006 Rene Rivera
@@ -270,7 +272,7 @@
print "notice: Regular site and user configuration files will"
print "notice: be ignored due to the test configuration being loaded."
- user_path = [os.path.expanduser("~")] + os.getenv("BOOST_BUILD_PATH").split(os.pathsep)
+ user_path = [os.path.expanduser("~")] + bjam.variable("BOOST_BUILD_PATH")
site_path = ["/etc"] + user_path
if os.name in ["nt"]:
site_path = [os.getenv("SystemRoot")] + user_path
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