2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-14 00:32:11 +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 1b2bd2b4f3
commit 9aa834caaa

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.