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

Don't make singleton vars globally singular, as it interfears with toolset extension.

[SVN r19838]
This commit is contained in:
Rene Rivera
2003-08-28 16:21:57 +00:00
parent e7a8d7c445
commit 386fb7b42f
2 changed files with 12 additions and 12 deletions

View File

@@ -482,12 +482,12 @@ rule set-as-singleton ( variables + )
for local variable in $(variables)
{
$(variable) = $($(variable):J=" ") ;
if ! $(gSINGLETON_SET($(variable)))
{
gSINGLETON($(variable)) = $($(variable)) ;
gSINGLETON_SET($(variable)) = true ;
}
$(variable) ?= $(gSINGLETON($(variable))) ;
#~ if ! $(gSINGLETON_SET($(variable)))
#~ {
#~ gSINGLETON($(variable)) = $($(variable)) ;
#~ gSINGLETON_SET($(variable)) = true ;
#~ }
#~ $(variable) ?= $(gSINGLETON($(variable))) ;
}
}

View File

@@ -482,12 +482,12 @@ rule set-as-singleton ( variables + )
for local variable in $(variables)
{
$(variable) = $($(variable):J=" ") ;
if ! $(gSINGLETON_SET($(variable)))
{
gSINGLETON($(variable)) = $($(variable)) ;
gSINGLETON_SET($(variable)) = true ;
}
$(variable) ?= $(gSINGLETON($(variable))) ;
#~ if ! $(gSINGLETON_SET($(variable)))
#~ {
#~ gSINGLETON($(variable)) = $($(variable)) ;
#~ gSINGLETON_SET($(variable)) = true ;
#~ }
#~ $(variable) ?= $(gSINGLETON($(variable))) ;
}
}