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 <mtortuyaux@microsoft.com>
This commit is contained in:
Mathieu Tortuyaux 2021-09-22 16:51:04 +02:00
parent e1b6d08789
commit a730b5bb46

View File

@ -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"