diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2024-07-31 09:34:05 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2024-07-31 09:34:05 +0200 |
commit | b13b031b2b8a7390d1dd4b2658d0f0b62e43db47 (patch) | |
tree | f4d2d12c6717541ec7d2b56cfafa25ebd73070d9 /libbuild2/test | |
parent | e122c6ff4a7f21026332ce9211ad095bd44e71ea (diff) |
Add lookup limit to {scope,target}::lookup_original()
Diffstat (limited to 'libbuild2/test')
-rw-r--r-- | libbuild2/test/script/script.cxx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libbuild2/test/script/script.cxx b/libbuild2/test/script/script.cxx index f7827f6..7862120 100644 --- a/libbuild2/test/script/script.cxx +++ b/libbuild2/test/script/script.cxx @@ -369,7 +369,10 @@ namespace build2 // value. In this case, presumably the override also affects the // script target and we will pick it up there. A bit fuzzy. // - auto p (root.test_target.lookup_original (var, target_only)); + auto p ( + root.test_target.lookup_original ( + var, + target_only ? lookup_limit::target : lookup_limit::none)); if (p.first) { |