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:
@@ -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) ;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user