diff options
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; } } |