diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2023-11-29 17:30:57 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2023-12-11 13:49:19 +0300 |
commit | acb4dbd7600a9670b33e3a28fdc719263e7f1095 (patch) | |
tree | da4306523d2f53b4ed7b651173b6c84ea70b680e /bpkg/package-query.cxx | |
parent | 9bc4fffd86e245e748589fdb601a944e466e405e (diff) |
Try to automatically resolve unsatisfied dependency constraints by specifying dependency version
Diffstat (limited to 'bpkg/package-query.cxx')
-rw-r--r-- | bpkg/package-query.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bpkg/package-query.cxx b/bpkg/package-query.cxx index 871b4fb..a90cdef 100644 --- a/bpkg/package-query.cxx +++ b/bpkg/package-query.cxx @@ -249,7 +249,7 @@ namespace bpkg // prerequisites? I'd say not. // if (shared_ptr<repository_fragment> r = - find (fr.fragment.load (), ap, chain, false)) + find (fr.fragment.load (), ap, chain, false /* prereq */)) return r; } } @@ -264,7 +264,7 @@ namespace bpkg for (const auto& fr: pr.load ()->fragments) { if (shared_ptr<repository_fragment> r = - find (fr.fragment.load (), ap, chain, false)) + find (fr.fragment.load (), ap, chain, false /* prereq */)) return r; } } |