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

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]
This commit is contained in:
Jurko Gospodnetić
2012-08-13 14:39:47 +00:00
parent 7d613bbf8c
commit 89bbb60774

View File

@@ -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) ] ;
}