aboutsummaryrefslogtreecommitdiff
path: root/bpkg/pkg-configure.cxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2022-06-17 19:44:08 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2022-06-17 19:44:08 +0300
commitc7b104cffb90c2d523e10750945a0234508c4495 (patch)
tree02b617a286fc9f47340d14fb08049ef6c4df9c77 /bpkg/pkg-configure.cxx
parent3441a481c16ab1f17fcbe4d24cd230ba9eef9c8f (diff)
Varios cleanups
Diffstat (limited to 'bpkg/pkg-configure.cxx')
-rw-r--r--bpkg/pkg-configure.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/bpkg/pkg-configure.cxx b/bpkg/pkg-configure.cxx
index 854e5e1..a86752e 100644
--- a/bpkg/pkg-configure.cxx
+++ b/bpkg/pkg-configure.cxx
@@ -342,6 +342,7 @@ namespace bpkg
const vector<size_t>* alts,
package_skeleton&& ps,
const vector<package_name>* pps,
+ bool disfigured,
bool simulate,
const function<find_database_function>& fdb)
{
@@ -365,8 +366,6 @@ namespace bpkg
l4 ([&]{trace << "src_root: " << src_root << ", "
<< "out_root: " << out_root;});
- bool disfigured (ps.disfigure_); // @@ TMP-K pass explicitly.
-
// Verify all our prerequisites are configured and populate the
// prerequisites list.
//
@@ -628,6 +627,7 @@ namespace bpkg
move (src_root),
move (out_root)),
nullptr /* prerequisites */,
+ false /* disfigured */,
false /* simulate */);
}