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

added missing validate-property-sets

[SVN r16798]
This commit is contained in:
Dave Abrahams
2003-01-08 18:16:32 +00:00
parent 9d46c920ff
commit e8ab0366e1
2 changed files with 22 additions and 0 deletions

View File

@@ -224,6 +224,17 @@ rule validate ( property : feature-space ? )
}
}
rule validate-property-sets ( property-sets * : feature-space ? )
{
for local s in $(property-sets)
{
for local p in [ feature.split $(s) ]
{
validate $(p) ;
}
}
}
# Makes a property set from 'specification', converting implicit values into
# full properties.
# TODO: Might want to use 'feature-space' here as well as in other rules.

View File

@@ -224,6 +224,17 @@ rule validate ( property : feature-space ? )
}
}
rule validate-property-sets ( property-sets * : feature-space ? )
{
for local s in $(property-sets)
{
for local p in [ feature.split $(s) ]
{
validate $(p) ;
}
}
}
# Makes a property set from 'specification', converting implicit values into
# full properties.
# TODO: Might want to use 'feature-space' here as well as in other rules.