diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2022-09-21 14:18:03 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2022-09-21 14:18:03 +0200 |
commit | fb5c711d0a2ccac1bc014a9a8580e85753e4067b (patch) | |
tree | 30a01c753257f2197ea2edc6d8e53ad202ce371a /libbuild2/dyndep.hxx | |
parent | fcb9dc3382f300e72303280fbcebf7b829b3372f (diff) |
Fix regression in dynamic dependency extraction, byproduct mode
Diffstat (limited to 'libbuild2/dyndep.hxx')
-rw-r--r-- | libbuild2/dyndep.hxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libbuild2/dyndep.hxx b/libbuild2/dyndep.hxx index 0789e78..a6f800e 100644 --- a/libbuild2/dyndep.hxx +++ b/libbuild2/dyndep.hxx @@ -210,13 +210,14 @@ namespace build2 const srcout_map& = {}); // As above but do not insert the target if it doesn't already exist. This - // function also returns NULL if the target exists but is implied (that - // is, not declared in a buildfile). + // function also returns NULL if the target exists but is dynamic (that + // is, not real or implied), unless the dynamic argument is true. // static pair<const file*, bool> find_file (tracer&, const char* what, action, const scope& base, const target&, path& prerequisite, bool cache, bool normalized, + bool dynamic, const function<map_extension_func>&, const target_type& fallback, const function<prefix_map_func>& = nullptr, |