diff options
Diffstat (limited to 'libbuild2/cli')
-rw-r--r-- | libbuild2/cli/rule.cxx | 3 | ||||
-rw-r--r-- | libbuild2/cli/target.cxx | 6 |
2 files changed, 5 insertions, 4 deletions
diff --git a/libbuild2/cli/rule.cxx b/libbuild2/cli/rule.cxx index 996ca51..7c571d4 100644 --- a/libbuild2/cli/rule.cxx +++ b/libbuild2/cli/rule.cxx @@ -120,7 +120,8 @@ namespace build2 prerequisite_members (a, t))) { if (g == nullptr) - g = &t.ctx.targets.insert<cli_cxx> (t.dir, t.out, t.name, trace); + g = &t.ctx.targets.insert_implied<cli_cxx> ( + t.dir, t.out, t.name, trace); prerequisites ps; ps.push_back (p->as_prerequisite ()); diff --git a/libbuild2/cli/target.cxx b/libbuild2/cli/target.cxx index 22ae75c..6e9601b 100644 --- a/libbuild2/cli/target.cxx +++ b/libbuild2/cli/target.cxx @@ -52,9 +52,9 @@ namespace build2 // // Also required for the src-out remapping logic. // - ctx.targets.insert<cxx::hxx> (d, o, n, trace); - ctx.targets.insert<cxx::cxx> (d, o, n, trace); - ctx.targets.insert<cxx::ixx> (d, o, n, trace); + ctx.targets.insert_implied<cxx::hxx> (d, o, n, trace); + ctx.targets.insert_implied<cxx::cxx> (d, o, n, trace); + ctx.targets.insert_implied<cxx::ixx> (d, o, n, trace); return new cli_cxx (ctx, move (d), move (o), move (n)); } |