From b2aa0e52d52d218f44ccdabd527f53c40bda0542 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jurko=20Gospodneti=C4=87?= Date: Mon, 2 Jun 2008 09:51:15 +0000 Subject: [PATCH] Corrected a bug causing abbreviated build folder name caching never getting used. [SVN r46043] --- v2/util/string.jam | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/v2/util/string.jam b/v2/util/string.jam index d6a4c2404..a39ed119e 100644 --- a/v2/util/string.jam +++ b/v2/util/string.jam @@ -68,7 +68,7 @@ rule abbreviate ( string ) # 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 @@ rule abbreviate ( string ) # Glue the initial character back on to the front. s2 = $(s1[1])$(s2) ; - $(.abbreviated-$(string)) = $(s2) ; + .abbreviated-$(string) = $(s2) ; return $(s2) ; } }