diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2022-03-03 12:48:07 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2022-03-07 13:58:48 +0200 |
commit | 8475c82a2ca186f4ca987e50b4249bb8eb32ba01 (patch) | |
tree | 20c782983f70f7e45ab71ce347ffba3d53650e25 /libbuild2/adhoc-rule-regex-pattern.hxx | |
parent | d28553772a3010fb545eae09967fa54adbe63bdb (diff) |
Add support for update=unmatch|match to ad hoc recipes
Diffstat (limited to 'libbuild2/adhoc-rule-regex-pattern.hxx')
-rw-r--r-- | libbuild2/adhoc-rule-regex-pattern.hxx | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/libbuild2/adhoc-rule-regex-pattern.hxx b/libbuild2/adhoc-rule-regex-pattern.hxx index 4327e72..e6fb938 100644 --- a/libbuild2/adhoc-rule-regex-pattern.hxx +++ b/libbuild2/adhoc-rule-regex-pattern.hxx @@ -35,10 +35,14 @@ namespace build2 match (action, target&, const string&, match_extra&) const override; virtual void - apply_adhoc_members (action, target&, match_extra&) const override; + apply_adhoc_members (action, target&, + const scope&, + match_extra&) const override; virtual void - apply_prerequisites (action, target&, match_extra&) const override; + apply_prerequisites (action, target&, + const scope&, + match_extra&) const override; virtual void dump (ostream&) const override; |