From dc8aa85f3d78fccf204530c8db6baf68229edf5e Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Sat, 28 Sep 2019 20:47:17 +0300 Subject: Adapt to swapping of entry and pattern parameters in butl::path_match() --- mod/build-config-module.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'mod/build-config-module.cxx') diff --git a/mod/build-config-module.cxx b/mod/build-config-module.cxx index 1efc514..028c956 100644 --- a/mod/build-config-module.cxx +++ b/mod/build-config-module.cxx @@ -310,13 +310,13 @@ namespace brep for (const build_constraint& c: constrs) { - if (path_match (dash_components_to_path (c.config), - cn, + if (path_match (cn, + dash_components_to_path (c.config), dir_path () /* start */, path_match_flags::match_absent) && (!c.target || - path_match (dash_components_to_path (*c.target), - tg, + path_match (tg, + dash_components_to_path (*c.target), dir_path () /* start */, path_match_flags::match_absent))) { -- cgit v1.1