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

Do not treat 'sun-stlport' feature value as two subfeatures.

Fixes #3736. Patch from K. Noel Belcourt.


[SVN r58451]
This commit is contained in:
Vladimir Prus
2009-12-18 10:07:57 +00:00
parent ebb6a6942d
commit 5d761fa5e4

View File

@@ -469,7 +469,9 @@ rule validate-value-string ( feature value-string )
if $($(feature).subfeatures)
{
if ! ( $(value-string) in $($(feature).subfeatures) ) {
if ! ( $(value-string) in $($(feature).values) )
&& ! ( $(value-string) in $($(feature).subfeatures) )
{
values = [ regex.split $(value-string) - ] ;
}
}