|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r83836 - trunk/tools/build/v2/test
From: steven_at_[hidden]
Date: 2013-04-10 16:38:22
Author: steven_watanabe
Date: 2013-04-10 16:38:21 EDT (Wed, 10 Apr 2013)
New Revision: 83836
URL: http://svn.boost.org/trac/boost/changeset/83836
Log:
Try to fix path handling for the Jam executable.
Text files modified:
trunk/tools/build/v2/test/BoostBuild.py | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Modified: trunk/tools/build/v2/test/BoostBuild.py
==============================================================================
--- trunk/tools/build/v2/test/BoostBuild.py (original)
+++ trunk/tools/build/v2/test/BoostBuild.py 2013-04-10 16:38:21 EDT (Wed, 10 Apr 2013)
@@ -272,8 +272,8 @@
# Find where jam_src is located. Try for the debug version if it is
# lying around.
- dirs = [os.path.join("../engine", jam_build_dir + ".debug"),
- os.path.join("../engine", jam_build_dir)]
+ dirs = [os.path.join("..", "engine", jam_build_dir + ".debug"),
+ os.path.join("..", "engine", jam_build_dir)]
for d in dirs:
if os.path.exists(d):
jam_build_dir = d
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