From bb2104ccb6e933afbc782ecb8a64fcf225505dab Mon Sep 17 00:00:00 2001 From: Vladimir Prus Date: Wed, 25 May 2005 06:10:23 +0000 Subject: [PATCH] Fix error when installing with and source file names are absolute. [SVN r29180] --- src/tools/stage.jam | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/stage.jam b/src/tools/stage.jam index 17c70a834..f856ae6f2 100644 --- a/src/tools/stage.jam +++ b/src/tools/stage.jam @@ -259,7 +259,7 @@ rule copy-file ( project : source : properties ) # Get the real path of the target. We probably need to strip # relative path from the target name at construction... local path = [ $(source).path ] ; - path = [ path.join $(path) $(name:D) ] ; + path = [ path.root $(path) $(name:D) ] ; # Make the path absolute. Otherwise, it's hard to compute relative # path. The 'source-root' is already absolute, see the # 'adjust-properties' method above.