diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2020-05-02 19:28:02 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2020-05-02 19:28:02 +0300 |
commit | 8e54ae94ce44d57b49b35269f006fe2bf07ec13d (patch) | |
tree | 2afef6369545ed6222d08b6eddf77ca37212cc64 /mod/build-config-module.hxx | |
parent | 96511bdc00c2e4c17517b0cc3fce50a08683b2a4 (diff) |
For external test packages use the 'all' class as default underlying build class set
Diffstat (limited to 'mod/build-config-module.hxx')
-rw-r--r-- | mod/build-config-module.hxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/mod/build-config-module.hxx b/mod/build-config-module.hxx index 04fd5b1..ba2698d 100644 --- a/mod/build-config-module.hxx +++ b/mod/build-config-module.hxx @@ -42,13 +42,15 @@ namespace brep exclude (const small_vector<bpkg::build_class_expr, 1>& exprs, const vector<bpkg::build_constraint>& constrs, const bbot::build_config& cfg, - string* reason = nullptr) const + string* reason = nullptr, + bool default_all_ucs = false) const { return brep::exclude (exprs, constrs, cfg, build_conf_->class_inheritance_map, - reason); + reason, + default_all_ucs); } // Check if the configuration belongs to the specified class. |