From 03108edabb827263be1a6c0dd32f4c4345126178 Mon Sep 17 00:00:00 2001 From: "Rick Farina (Zero_Chaos)" Date: Tue, 25 Apr 2023 16:02:42 -0400 Subject: [PATCH] profile: gentoo fixed e2fsprogs --- profiles/pentoo/base/profile.bashrc | 5 ----- 1 file changed, 5 deletions(-) diff --git a/profiles/pentoo/base/profile.bashrc b/profiles/pentoo/base/profile.bashrc index f3e94e70b..c30dd57db 100644 --- a/profiles/pentoo/base/profile.bashrc +++ b/profiles/pentoo/base/profile.bashrc @@ -3,11 +3,6 @@ local CORES="$(nproc)" if [[ "${CORES}" -eq "0" ]] ; then CORES="1" ; fi echo ${MAKEOPTS} | grep -q -e -j || export MAKEOPTS="-j${CORES} -l${CORES}" -#https://bugs.gentoo.org/904338 -if [[ ${CATEGORY/$PN} == e2fsprogs ]]; then - export MAKEOPTS="-j1 -l${CORES}" -fi - #by the time this is parsed, EMERGE_DEFAULT_OPTS are already applied, this file is too late #echo ${EMERGE_DEFAULT_OPTS} | grep -q jobs || export EMERGE_DEFAULT_OPTS="${EMERGE_DEFAULT_OPTS} --jobs=${CORES} --load-average=${CORES}"