diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2023-05-08 15:15:23 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2023-05-08 15:15:23 +0200 |
commit | 3323779f3e359bfa1d48ba5e37b6dddb609fc7e2 (patch) | |
tree | 43042341a006708bd4cf19844be7374d25f23eba | |
parent | ad33b90e814c2d23052692ba114252ed2ef2d311 (diff) |
Adjust to build2::context::match_only type change
-rw-r--r-- | bpkg/package-skeleton.cxx | 10 | ||||
-rw-r--r-- | bpkg/pkg-configure.cxx | 10 |
2 files changed, 10 insertions, 10 deletions
diff --git a/bpkg/package-skeleton.cxx b/bpkg/package-skeleton.cxx index afce66c..a3cdcdc 100644 --- a/bpkg/package-skeleton.cxx +++ b/bpkg/package-skeleton.cxx @@ -2475,11 +2475,11 @@ namespace bpkg new context (build2_sched, build2_mutexes, build2_fcache, - false /* match_only */, // Shouldn't matter. - false /* no_external_modules */, - false /* dry_run */, // Shouldn't matter. - false /* no_diag_buffer */, // Shouldn't matter. - false /* keep_going */, // Shouldnt' matter. + nullopt /* match_only */, // Shouldn't matter. + false /* no_external_modules */, + false /* dry_run */, // Shouldn't matter. + false /* no_diag_buffer */, // Shouldn't matter. + false /* keep_going */, // Shouldnt' matter. cmd_vars)); } catch (const build2::failed&) diff --git a/bpkg/pkg-configure.cxx b/bpkg/pkg-configure.cxx index d6c5446..e6e0b8d 100644 --- a/bpkg/pkg-configure.cxx +++ b/bpkg/pkg-configure.cxx @@ -420,11 +420,11 @@ namespace bpkg new context (build2_sched, build2_mutexes, build2_fcache, - false /* match_only */, - false /* no_external_modules */, - false /* dry_run */, - false /* no_diag_buffer */, - false /* keep_going */, + nullopt /* match_only */, + false /* no_external_modules */, + false /* dry_run */, + false /* no_diag_buffer */, + false /* keep_going */, merge_cmd_vars (), context::reserves { 30000 /* targets */, |