diff options
author | Sam James <sam@gentoo.org> | 2021-01-02 07:02:26 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-01-02 07:02:26 +0000 |
commit | 6b3a4ffa459c89192b14d3c910002f4069146f09 (patch) | |
tree | d7a76f75a6b6d312bdcb60defcb1e50e0416af7c /sci-libs | |
parent | sci-libs/mumps: add gcc 10 workaround (diff) | |
download | gentoo-6b3a4ffa459c89192b14d3c910002f4069146f09.tar.gz gentoo-6b3a4ffa459c89192b14d3c910002f4069146f09.tar.bz2 gentoo-6b3a4ffa459c89192b14d3c910002f4069146f09.zip |
sci-libs/mumps: drop -j1
This is supposedly fixed upstream and works fine here.
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'sci-libs')
-rw-r--r-- | sci-libs/mumps/mumps-5.3.5.ebuild | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sci-libs/mumps/mumps-5.3.5.ebuild b/sci-libs/mumps/mumps-5.3.5.ebuild index d88be408e3f3..9c2b70d7f003 100644 --- a/sci-libs/mumps/mumps-5.3.5.ebuild +++ b/sci-libs/mumps/mumps-5.3.5.ebuild @@ -141,8 +141,7 @@ src_compile() { # Workaround #462602 export FAKEROOTKEY=1 - # -j1 because of static archive race - emake -j1 alllib PIC="-fPIC" + emake alllib PIC="-fPIC" if ! use mpi; then #$(tc-getAR) crs lib/libmumps_common.a libseq/*.o || die LIBADD+=" -Llibseq -lmpiseq" @@ -159,7 +158,7 @@ src_compile() { if use static-libs; then emake clean - emake -j1 alllib + emake alllib fi } |