$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
From: jurko.gospodnetic_at_[hidden]
Date: 2008-06-02 05:51:15
Author: jurko
Date: 2008-06-02 05:51:15 EDT (Mon, 02 Jun 2008)
New Revision: 46043
URL: http://svn.boost.org/trac/boost/changeset/46043
Log:
Corrected a bug causing abbreviated build folder name caching never getting used.
Text files modified:
trunk/tools/build/v2/util/string.jam | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Modified: trunk/tools/build/v2/util/string.jam
==============================================================================
--- trunk/tools/build/v2/util/string.jam (original)
+++ trunk/tools/build/v2/util/string.jam 2008-06-02 05:51:15 EDT (Mon, 02 Jun 2008)
@@ -68,7 +68,7 @@
# Anything less than 4 characters gets no abbreviation.
else if ! [ MATCH (....) : $(string) ]
{
- $(.abbreviated-$(string)) = $(string) ;
+ .abbreviated-$(string) = $(string) ;
return $(string) ;
}
else
@@ -101,7 +101,7 @@
# Glue the initial character back on to the front.
s2 = $(s1[1])$(s2) ;
- $(.abbreviated-$(string)) = $(s2) ;
+ .abbreviated-$(string) = $(s2) ;
return $(s2) ;
}
}