diff --git a/src/build/property.jam b/src/build/property.jam index e01cc804f..d85b9eb60 100644 --- a/src/build/property.jam +++ b/src/build/property.jam @@ -12,7 +12,7 @@ import utility : ungrist ; # On success, returns properties. On error, returns a list which first # element is "@error" and the other elements compose the explanation # string. -rule refine-properties ( properties * : requirements * : feature-space ? ) +rule refine ( properties * : requirements * : feature-space ? ) { feature-space ?= feature ; @@ -103,18 +103,18 @@ local rule __test__ ( ) } assert.result gcc off FOO - : refine-properties gcc off + : refine gcc off : FOO : $(test-space) ; assert.result gcc on - : refine-properties gcc off + : refine gcc off : on : $(test-space) ; - r = [ refine-properties gcc off + r = [ refine gcc off : on : $(test-space) ] ; assert.equal $(r[1]) : "@error" ;