From a730b5bb46073edb1725bb38657c0f82d81befe7 Mon Sep 17 00:00:00 2001 From: Mathieu Tortuyaux Date: Wed, 22 Sep 2021 16:51:04 +0200 Subject: [PATCH] bootstrap: add `minimal` useflag to BOOSTRAP_USE with the recent update of `dev-lang/perl`, we added the `minimal` useflag. This one is not taken in account from `package.use` into the stage 2 of the boostraping, because we do an `export USE=...`. Following the precedence of the USE flag with Gentoo, the `export` will be used in first, so the `package.use` with our `dev-lang/perl minimal` won't be used. Signed-off-by: Mathieu Tortuyaux --- .../coreos-overlay/profiles/coreos/base/make.defaults | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sdk_container/src/third_party/coreos-overlay/profiles/coreos/base/make.defaults b/sdk_container/src/third_party/coreos-overlay/profiles/coreos/base/make.defaults index 55be63312d..83d92968a5 100644 --- a/sdk_container/src/third_party/coreos-overlay/profiles/coreos/base/make.defaults +++ b/sdk_container/src/third_party/coreos-overlay/profiles/coreos/base/make.defaults @@ -34,6 +34,9 @@ USE="${USE} -openmp" # The git-r3 eclass now depends on curl support, which is used in catalyst. BOOTSTRAP_USE="${BOOTSTRAP_USE} curl" +# Add `minimal` useflag to prevent texinfo to pull dev-lang/perl with not required set of dependencies. +BOOTSTRAP_USE="${BOOTSTRAP_USE} minimal" + # Set SELinux policy POLICY_TYPES="targeted mcs mls"