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

Allow empty list of source types in call to generators.register-composing.

[SVN r33993]
This commit is contained in:
Vladimir Prus
2006-05-18 06:32:16 +00:00
parent 4f17b37d63
commit ebf2b165c0

View File

@@ -645,7 +645,7 @@ rule register-standard ( id : source-types * : target-types + : requirements * )
# Creates new instance of the 'composing-generator' class and
# registers it.
rule register-composing ( id : source-types + : target-types + : requirements * )
rule register-composing ( id : source-types * : target-types + : requirements * )
{
local g = [ new generator $(id) true : $(source-types)
: $(target-types) : $(requirements) ] ;