aboutsummaryrefslogtreecommitdiff
path: root/bpkg/pkg-build.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2018-03-16 18:11:06 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2018-03-16 18:11:06 +0200
commitad2712d8a1e22253cddc7fd71cc7700933040dcb (patch)
treeacf94000ad40aff9c14c32962428d57c0ead7948 /bpkg/pkg-build.cxx
parent36026ec0a05d74776114ddf5aee096fbda9bc7ee (diff)
Don't update dependents if only reconfiguring
Diffstat (limited to 'bpkg/pkg-build.cxx')
-rw-r--r--bpkg/pkg-build.cxx2
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;