aboutsummaryrefslogtreecommitdiff
path: root/libbuild2/bash/rule.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'libbuild2/bash/rule.hxx')
-rw-r--r--libbuild2/bash/rule.hxx9
1 files changed, 6 insertions, 3 deletions
diff --git a/libbuild2/bash/rule.hxx b/libbuild2/bash/rule.hxx
index 3da0c73..3f9618f 100644
--- a/libbuild2/bash/rule.hxx
+++ b/libbuild2/bash/rule.hxx
@@ -29,10 +29,12 @@ namespace build2
class LIBBUILD2_BASH_SYMEXPORT in_rule: public in::rule
{
public:
- in_rule (): rule ("bash.in 1", "bash.in", '@', false /* strict */) {}
+ in_rule (): rule ("bash.in 1", "bash", '@', false /* strict */) {}
virtual bool
- match (action, target&) const override;
+ match (action, target&, const string&, match_extra&) const override;
+
+ using in::rule::match; // Make Clang happy.
virtual recipe
apply (action, target&) const override;
@@ -50,6 +52,7 @@ namespace build2
const string&,
optional<uint64_t>,
bool,
+ const substitution_map*,
const optional<string>&) const override;
string
@@ -71,7 +74,7 @@ namespace build2
match (action, target&) const override;
virtual recipe
- apply (action, target&) const override;
+ apply (action, target&, match_extra&) const override;
protected:
const in_rule& in_;