diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2022-06-13 15:18:01 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2022-06-13 15:18:17 +0300 |
commit | 9b10547f177eabf6773e20e4f5e7d21db5f3fd5a (patch) | |
tree | 1e18e6b4aa343c7dbddced124f9f09ccc47a02bb | |
parent | 70acb4044c01c53126fb8d301716cdb0292a40e2 (diff) |
Fix system flag for unhold package adjustments
-rw-r--r-- | bpkg/pkg-build.cxx | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/bpkg/pkg-build.cxx b/bpkg/pkg-build.cxx index 0acab14..ffeeaf4 100644 --- a/bpkg/pkg-build.cxx +++ b/bpkg/pkg-build.cxx @@ -5543,23 +5543,23 @@ namespace bpkg sp, nullptr, nullptr, - nullopt, // Dependencies. - nullopt, // Dependencies alternatives. - nullopt, // Package skeleton. - nullopt, // Postponed dependency alternatives. - false, // Recursive collection. - nullopt, // Hold package. - nullopt, // Hold version. - {}, // Constraints. - false, // System package. - false, // Keep output directory. - false, // Disfigure (from-scratch reconf). - false, // Configure-only. - nullopt, // Checkout root. - false, // Checkout purge. - strings (), // Configuration variables. - {}, // Required by. - false, // Required by dependents. + nullopt, // Dependencies. + nullopt, // Dependencies alternatives. + nullopt, // Package skeleton. + nullopt, // Postponed dependency alternatives. + false, // Recursive collection. + nullopt, // Hold package. + nullopt, // Hold version. + {}, // Constraints. + sp->system (), + false, // Keep output directory. + false, // Disfigure (from-scratch reconf). + false, // Configure-only. + nullopt, // Checkout root. + false, // Checkout purge. + strings (), // Configuration variables. + {}, // Required by. + false, // Required by dependents. build_package::adjust_unhold}; p.merge (move (bp)); |