aboutsummaryrefslogtreecommitdiff
path: root/bpkg/pkg-unpack.cxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2022-07-29 17:37:33 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2022-08-02 14:26:28 +0300
commitd6d72bc6e4545d216d89660f86781bbc34980fe9 (patch)
tree2971fda1501575cdc493095fecd1a8e5c0af9668 /bpkg/pkg-unpack.cxx
parentfee16e0139803510bb0666aa56990af5849b0589 (diff)
For rep-create, pkg-verify, and rep-info don't verify build-time toolchain dependency constraints if --ignore-unknown option is specified
Diffstat (limited to 'bpkg/pkg-unpack.cxx')
-rw-r--r--bpkg/pkg-unpack.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/bpkg/pkg-unpack.cxx b/bpkg/pkg-unpack.cxx
index 99bd161..48a64ea 100644
--- a/bpkg/pkg-unpack.cxx
+++ b/bpkg/pkg-unpack.cxx
@@ -217,6 +217,7 @@ namespace bpkg
pkg_verify (o,
d,
true /* ignore_unknown */,
+ false /* ignore_toolchain */,
false /* load_buildfiles */,
[&o, &d, &pvi] (version& v)
{
@@ -433,6 +434,7 @@ namespace bpkg
pkg_verify (co,
d,
true /* ignore_unknown */,
+ false /* ignore_toolchain */,
false /* load_buildfiles */,
function<package_manifest::translate_function> ()));