aboutsummaryrefslogtreecommitdiff
path: root/build2/parser.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2016-04-23 09:17:48 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2016-04-23 09:17:48 +0200
commit1b1d1434539c4c198caab4f3a45ade9e6827427b (patch)
treeea16012a180341af8d0771e6febdcd8ecb4d4714 /build2/parser.cxx
parentdecfe7243b6eedb4ed3d1ac5005345745e5fce61 (diff)
Revert back to using root scope in src_out()/out_src()
Relaxing it to base was not wise since we can have "sideways" prerequisites (those from parallel directories such as brep's ../web/*).
Diffstat (limited to 'build2/parser.cxx')
-rw-r--r--build2/parser.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/build2/parser.cxx b/build2/parser.cxx
index bd44f27..29af4be 100644
--- a/build2/parser.cxx
+++ b/build2/parser.cxx
@@ -2854,7 +2854,7 @@ namespace build2
scope_->src_path () != scope_->out_path () &&
d.sub (scope_->src_path ()))
{
- out = out_src (d, *scope_);
+ out = out_src (d, *root_);
}
const char* e (p.extension ());