commit: 98bab88639ca20162ea6e34f4651d1bc40fc8241 Author: Seth M. Price <sprice623 <AT> aol <DOT> com> AuthorDate: Fri Nov 29 17:41:51 2024 +0000 Commit: Seth Price <sprice623 <AT> aol <DOT> com> CommitDate: Fri Nov 29 17:41:51 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=98bab886
dev-lang/cc65: replace make -j warning with flag Per advice on Gentoo bug linked below. Bug: https://bugs.gentoo.org/912925 Bug: https://github.com/cc65/cc65/issues/2543 Signed-off-by: Seth M. Price <sprice623 <AT> aol.com> dev-lang/cc65/cc65-2.19-r3.ebuild | 7 +------ dev-lang/cc65/cc65-9999-r1.ebuild | 7 +------ 2 files changed, 2 insertions(+), 12 deletions(-) diff --git a/dev-lang/cc65/cc65-2.19-r3.ebuild b/dev-lang/cc65/cc65-2.19-r3.ebuild index c365d5163..4fecbbbcc 100644 --- a/dev-lang/cc65/cc65-2.19-r3.ebuild +++ b/dev-lang/cc65/cc65-2.19-r3.ebuild @@ -14,12 +14,7 @@ SLOT="0" KEYWORDS="~amd64" src_compile() { - ewarn "According to an upstream maintainer, cc65 has a tendency to" - ewarn "\"fail randomly\" when using \`make -j' to build in parallel." - ewarn "If compiling this package fails, and you have parallel jobs" - ewarn "enabled, try again with \`MAKEOPTS+=-j1' to disable them." - - emake CC="$(tc-getCC)" AR="$(tc-getAR)" PREFIX="${EPREFIX}/usr" + emake CC="$(tc-getCC)" AR="$(tc-getAR)" PREFIX="${EPREFIX}/usr" -j1 } src_install() { diff --git a/dev-lang/cc65/cc65-9999-r1.ebuild b/dev-lang/cc65/cc65-9999-r1.ebuild index 32270f99b..ba32ad27a 100644 --- a/dev-lang/cc65/cc65-9999-r1.ebuild +++ b/dev-lang/cc65/cc65-9999-r1.ebuild @@ -13,12 +13,7 @@ LICENSE="ZLIB" SLOT="0" src_compile() { - ewarn "According to an upstream maintainer, cc65 has a tendency to" - ewarn "\"fail randomly\" when using \`make -j' to build in parallel." - ewarn "If compiling this package fails, and you have parallel jobs" - ewarn "enabled, try again with \`MAKEOPTS+=-j1' to disable them." - - emake CC="$(tc-getCC)" AR="$(tc-getAR)" PREFIX="${EPREFIX}/usr" + emake CC="$(tc-getCC)" AR="$(tc-getAR)" PREFIX="${EPREFIX}/usr" -j1 } src_install() {