diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2020-06-08 13:18:31 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2020-06-08 13:18:31 +0200 |
commit | eebb47a613e47b2c25d64d5766323dfeeb5c3a73 (patch) | |
tree | a4a01e0dcd59e5efb12abfcc6c5d15def54c533d /libbuild2/cc/compile-rule.cxx | |
parent | 758a50eb1825f2e0c1acd5c61d36bb5b866585b8 (diff) |
Hash ad hoc prerequsites for ad hoc recipe change detection
Diffstat (limited to 'libbuild2/cc/compile-rule.cxx')
-rw-r--r-- | libbuild2/cc/compile-rule.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbuild2/cc/compile-rule.cxx b/libbuild2/cc/compile-rule.cxx index 6b9104f..cb9da94 100644 --- a/libbuild2/cc/compile-rule.cxx +++ b/libbuild2/cc/compile-rule.cxx @@ -554,7 +554,7 @@ namespace build2 return true; } else - return ts != timestamp_unknown ? pt->newer (ts) : false; + return ts != timestamp_unknown ? pt->newer (ts, ns) : false; } } |