From 89bbb60774dc44117e57024bc833e345ce13a5e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jurko=20Gospodneti=C4=87?= Date: Mon, 13 Aug 2012 14:39:47 +0000 Subject: [PATCH] Updated Boost Build's stage.symlink rule to pass its constructed virtual target through the virtual-target.register rule, as all virtual-target instances are supposed to be. [SVN r80006] --- src/tools/stage.jam | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/tools/stage.jam b/src/tools/stage.jam index b7e224b7a..8d005ae02 100644 --- a/src/tools/stage.jam +++ b/src/tools/stage.jam @@ -333,8 +333,9 @@ rule copy-file ( project name ? : source : properties ) rule symlink ( name : project : source : properties ) { local a = [ new action $(source) : symlink.ln : $(properties) ] ; - return [ new file-target $(name) exact : [ $(source).type ] : $(project) : - $(a) ] ; + local t = [ new file-target $(name) exact : [ $(source).type ] : $(project) + : $(a) ] ; + return [ virtual-target.register $(t) ] ; }