diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2021-11-04 13:41:23 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2021-11-04 13:41:23 +0200 |
commit | 65f77bb9a9556033a0bfb7401dd9a00120e27524 (patch) | |
tree | fe287d9986936f9240e6e8fecff5880684322fd9 /libbuild2/install/rule.cxx | |
parent | 63fb9ab4e861e5110c3652e74270f76fb858c37a (diff) |
Do not apply install scope to update-for-install pre-operation
Diffstat (limited to 'libbuild2/install/rule.cxx')
-rw-r--r-- | libbuild2/install/rule.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libbuild2/install/rule.cxx b/libbuild2/install/rule.cxx index 2d81067..d4c70c0 100644 --- a/libbuild2/install/rule.cxx +++ b/libbuild2/install/rule.cxx @@ -105,7 +105,7 @@ namespace build2 // iterates over all its members. // if (!is) - is = install_scope (t); + is = a.operation () != update_id ? install_scope (t) : nullptr; const target* pt (filter (*is, a, t, i)); if (pt == nullptr) @@ -366,7 +366,7 @@ namespace build2 // iterates over all its members. // if (!is) - is = install_scope (t); + is = a.operation () != update_id ? install_scope (t) : nullptr; const target* pt (filter (*is, a, t, i)); |