2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-15 00:52:16 +00:00

Corrected a bug causing abbreviated build folder name caching never getting used.

[SVN r46043]
This commit is contained in:
Jurko Gospodnetić
2008-06-02 09:51:15 +00:00
parent 77b87d8edb
commit b2aa0e52d5

View File

@@ -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) ;
}
}