diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2020-02-03 19:46:19 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2020-02-03 19:46:19 +0200 |
commit | c68ec49334b072535d79dc52e0aafa05f0015cb8 (patch) | |
tree | 37a8f379e38ad02bf0ce1a774884a22c594c1b22 | |
parent | 8efa97024e4ad2bac1cc9639e36c72fa1be4595d (diff) |
Fix bug in sys_*_dirs commit
-rw-r--r-- | libbuild2/cc/module.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbuild2/cc/module.cxx b/libbuild2/cc/module.cxx index e31519c..3c966d8 100644 --- a/libbuild2/cc/module.cxx +++ b/libbuild2/cc/module.cxx @@ -493,7 +493,7 @@ namespace build2 // if (!ui && !uli) { - for (const dir_path& d: inc_dirs) + for (const dir_path& d: is) { if (path_match (d, a_usr_inc)) { |