diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2023-09-20 09:03:44 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2023-09-20 09:03:44 +0200 |
commit | 77bef9b64857b1d2ae96dafc2f531cadb374f561 (patch) | |
tree | f246f3ebc62116263521d87b7d74dba7efc2f0ae /libbuild2/rule.cxx | |
parent | b43546939b21f6c8d3e69d4ab1e44f08c0756481 (diff) |
Fix issue with fallback rule priority in dist module
While at it, also remove workarounds for the same issue in the config and
test modules.
Diffstat (limited to 'libbuild2/rule.cxx')
-rw-r--r-- | libbuild2/rule.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libbuild2/rule.cxx b/libbuild2/rule.cxx index 097e15a..0d6ec8c 100644 --- a/libbuild2/rule.cxx +++ b/libbuild2/rule.cxx @@ -95,6 +95,9 @@ namespace build2 { tracer trace ("file_rule::match"); + if (match_type_ && !t.is_a<mtime_target> ()) + return false; + // While strictly speaking we should check for the file's existence // for every action (because that's the condition for us matching), // for some actions this is clearly a waste. Say, perform_clean: we |