diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2018-03-16 18:11:06 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2018-03-16 18:11:06 +0200 |
commit | ad2712d8a1e22253cddc7fd71cc7700933040dcb (patch) | |
tree | acf94000ad40aff9c14c32962428d57c0ead7948 | |
parent | 36026ec0a05d74776114ddf5aee096fbda9bc7ee (diff) |
Don't update dependents if only reconfiguring
-rw-r--r-- | bpkg/pkg-build.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bpkg/pkg-build.cxx b/bpkg/pkg-build.cxx index 65e55d0..3d40ab1 100644 --- a/bpkg/pkg-build.cxx +++ b/bpkg/pkg-build.cxx @@ -1875,7 +1875,7 @@ namespace bpkg // Figure out if we also should update dependents. // - if (o.leave_dependent ()) + if (o.leave_dependent () || o.configure_only ()) update_dependents = false; else if (o.yes () || o.update_dependent ()) update_dependents = true; |