diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2020-01-27 14:23:18 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2020-01-27 14:23:18 +0200 |
commit | 14c7d434df62989fbceef8322f61400844bd5943 (patch) | |
tree | 0b89e169d597d2ad264cdabeee2df1136ca80587 /libbuild2/bin/rule.cxx | |
parent | 9e47b1fdea6fe589c531c5c649a9f1c22bc3a029 (diff) |
See through lib{} group during dist
Diffstat (limited to 'libbuild2/bin/rule.cxx')
-rw-r--r-- | libbuild2/bin/rule.cxx | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/libbuild2/bin/rule.cxx b/libbuild2/bin/rule.cxx index 8c1174a..0bb5aed 100644 --- a/libbuild2/bin/rule.cxx +++ b/libbuild2/bin/rule.cxx @@ -53,11 +53,14 @@ namespace build2 } bool lib_rule:: - match (action, target& xt, const string&) const + match (action a, target& xt, const string&) const { lib& t (xt.as<lib> ()); - members bm (build_members (t.root_scope ())); + members bm (a.meta_operation () != dist_id + ? build_members (t.root_scope ()) + : members {true, true}); + t.a = bm.a ? &search<liba> (t, t.dir, t.out, t.name) : nullptr; t.s = bm.s ? &search<libs> (t, t.dir, t.out, t.name) : nullptr; |