$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
From: ghost_at_[hidden]
Date: 2007-10-08 17:10:41
Author: vladimir_prus
Date: 2007-10-08 17:10:41 EDT (Mon, 08 Oct 2007)
New Revision: 39817
URL: http://svn.boost.org/trac/boost/changeset/39817
Log:
Windows fix
Text files modified:
trunk/tools/build/v2/test/BoostBuild.py | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
Modified: trunk/tools/build/v2/test/BoostBuild.py
==============================================================================
--- trunk/tools/build/v2/test/BoostBuild.py (original)
+++ trunk/tools/build/v2/test/BoostBuild.py 2007-10-08 17:10:41 EDT (Mon, 08 Oct 2007)
@@ -716,6 +716,9 @@
if dll_prefix:
tail = "lib" + tail
result = os.path.join(head, tail)
+ # If we try to use this name in Jamfile, we better
+ # convert \ to /, as otherwise we'd have to quote \.
+ result = string.replace(result, "\\", "/")
return result
def adjust_suffix(self, name):