aboutsummaryrefslogtreecommitdiff
path: root/build2/test/rule.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'build2/test/rule.cxx')
-rw-r--r--build2/test/rule.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/build2/test/rule.cxx b/build2/test/rule.cxx
index 171cbac..64292fc 100644
--- a/build2/test/rule.cxx
+++ b/build2/test/rule.cxx
@@ -227,7 +227,7 @@ namespace build2
group_prerequisite_members (a, t, members_mode::maybe))
{
if (p.is_a<testscript> ())
- t.prerequisite_targets.push_back (&p.search ());
+ t.prerequisite_targets.push_back (&p.search (t));
}
return [this] (action a, const target& t)
@@ -289,9 +289,9 @@ namespace build2
// @@ OUT: what if this is a @-qualified pair or names?
//
- const target* it (in != nullptr ? &search (*in, bs) : nullptr);
+ const target* it (in != nullptr ? &search (t, *in, bs) : nullptr);
const target* ot (on != nullptr
- ? in == on ? it : &search (*on, bs)
+ ? in == on ? it : &search (t, *on, bs)
: nullptr);
if (a.operation () == update_id)