$include_dir="/home/hyper-archives/boost-build/include"; include("$include_dir/msg-header.inc") ?>
From: Caleb Epstein (caleb.epstein_at_[hidden])
Date: 2005-01-10 12:08:33
Forget it. I figured out what was wrong. I am actually running
multiple toolsets in a single run and regression.py is using spaces to
delimit the toolset names, but not quoting the "-sTOOLS=" argument to
bjam.
Here's a patch:
--- regression.py~ 2005-01-10 12:08:04.594196000 -0500
+++ regression.py 2005-01-10 11:20:12.525180000 -0500
@@ -421,7 +421,7 @@
)
if not toolsets is None:
- result += ' -sTOOLS=%s' % string.join( string.split(
toolsets, ',' ), ' ' )
+ result += ' "-sTOOLS=%s"' % string.join( string.split(
toolsets, ',' ), ' ' )
return result
-- Caleb Epstein caleb dot epstein at gmail dot com