From 28bf6d7de32157bf3bcfdfee4d34404565ea8fe6 Mon Sep 17 00:00:00 2001 From: Vladimir Prus Date: Tue, 11 Aug 2009 16:53:35 +0000 Subject: [PATCH] Properly register targets created by notfile generator. [SVN r55529] --- src/tools/notfile.jam | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/tools/notfile.jam b/src/tools/notfile.jam index 48d00f2de..97a5b0e87 100644 --- a/src/tools/notfile.jam +++ b/src/tools/notfile.jam @@ -39,7 +39,8 @@ class notfile-generator : generator action = [ new action $(sources) : notfile.run : $(property-set) ] ; } - return [ new notfile-target $(name) : $(project) : $(action) ] ; + return [ virtual-target.register + [ new notfile-target $(name) : $(project) : $(action) ] ] ; } }