diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2021-10-07 07:37:28 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2021-10-07 07:37:28 +0200 |
commit | 45ee1a71a27a938db9ffe7218f3a19b585de63b4 (patch) | |
tree | fbdce9cdf036b548a9c7aeb10782d69a8210f558 /libbuild2/bash/rule.cxx | |
parent | 9637eb583a4e2bc028b93d5b8f5ceb981402554d (diff) |
Minor install-related cleanups
Diffstat (limited to 'libbuild2/bash/rule.cxx')
-rw-r--r-- | libbuild2/bash/rule.cxx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libbuild2/bash/rule.cxx b/libbuild2/bash/rule.cxx index 82c06c7..1138227 100644 --- a/libbuild2/bash/rule.cxx +++ b/libbuild2/bash/rule.cxx @@ -400,7 +400,10 @@ namespace build2 recipe install_rule:: apply (action a, target& t) const { - recipe r (file_rule::apply (a, t)); + recipe r (file_rule::apply_impl (a, t)); + + if (r == nullptr) + return noop_recipe; if (a.operation () == update_id) { |