sys-libs/newlib: allow parallel install again

The upstream build system has been heavily rewritten and shouldn't have
any parallel install bugs in it anymore.  If there are any left, they
should get fixed, so let's re enable parallel install.

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
This commit is contained in:
Mike Frysinger
2023-01-20 18:53:01 -05:00
parent f56162f0f8
commit b9f590f6d4
2 changed files with 4 additions and 4 deletions

View File

@@ -128,11 +128,11 @@ src_compile() {
src_install() {
cd "${NEWLIBBUILD}" || die
emake -j1 DESTDIR="${D}" install
emake DESTDIR="${D}" install
if use nano ; then
cd "${NEWLIBNANOBUILD}" || die
emake -j1 DESTDIR="${NEWLIBNANOTMPINSTALL}" install
emake DESTDIR="${NEWLIBNANOTMPINSTALL}" install
# Rename nano lib* files to lib*_nano and move to the real ${D}
local nanolibfiles=""
nanolibfiles=$(find "${NEWLIBNANOTMPINSTALL}" -regex ".*/lib\(c\|g\|m\|rdimon\|gloss\)\.a" -print)

View File

@@ -128,11 +128,11 @@ src_compile() {
src_install() {
cd "${NEWLIBBUILD}" || die
emake -j1 DESTDIR="${D}" install
emake DESTDIR="${D}" install
if use nano ; then
cd "${NEWLIBNANOBUILD}" || die
emake -j1 DESTDIR="${NEWLIBNANOTMPINSTALL}" install
emake DESTDIR="${NEWLIBNANOTMPINSTALL}" install
# Rename nano lib* files to lib*_nano and move to the real ${D}
local nanolibfiles=""
nanolibfiles=$(find "${NEWLIBNANOTMPINSTALL}" -regex ".*/lib\(c\|g\|m\|rdimon\|gloss\)\.a" -print)