From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 7726F1384B4 for ; Sat, 12 Dec 2015 23:32:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D4B4821C013; Sat, 12 Dec 2015 23:32:44 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 77BEC21C013 for ; Sat, 12 Dec 2015 23:32:44 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7F0343402A2 for ; Sat, 12 Dec 2015 23:32:43 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D868CC7A for ; Sat, 12 Dec 2015 23:32:37 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1449963135.eeb88b23cd80c5926eb8d31a06a5661709f09df1.vapier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/memtest86+/files/, sys-apps/memtest86+/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/memtest86+/files/memtest86+-5.01-no-clean.patch sys-apps/memtest86+/memtest86+-5.01-r1.ebuild X-VCS-Directories: sys-apps/memtest86+/ sys-apps/memtest86+/files/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: eeb88b23cd80c5926eb8d31a06a5661709f09df1 X-VCS-Branch: master Date: Sat, 12 Dec 2015 23:32:37 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: adffc3e3-edc1-49bd-84a0-263c385fb8b6 X-Archives-Hash: c25862becd97ea412976c11b81494515 commit: eeb88b23cd80c5926eb8d31a06a5661709f09df1 Author: Mike Frysinger gentoo org> AuthorDate: Sat Dec 12 23:32:15 2015 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Sat Dec 12 23:32:15 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eeb88b23 sys-apps/memtest+: fix parallel build errors #557890 sys-apps/memtest86+/files/memtest86+-5.01-no-clean.patch | 16 ++++++++++++++++ sys-apps/memtest86+/memtest86+-5.01-r1.ebuild | 1 + 2 files changed, 17 insertions(+) diff --git a/sys-apps/memtest86+/files/memtest86+-5.01-no-clean.patch b/sys-apps/memtest86+/files/memtest86+-5.01-no-clean.patch new file mode 100644 index 0000000..876edcf --- /dev/null +++ b/sys-apps/memtest86+/files/memtest86+-5.01-no-clean.patch @@ -0,0 +1,16 @@ +don't run the clean target when building all as we run into parallel races: + - memtest kicks off building of a bunch of .o files + - clean runs in parallel which runs `rm` and deletes some of the new .o + - memtest goes to link and fails because objects are missing + +--- a/Makefile ++++ b/Makefile +@@ -19,7 +19,7 @@ + smp.o vmem.o random.o + + +-all: clean memtest.bin memtest ++all: memtest.bin memtest + + # Link it statically once so I know I don't have undefined + # symbols and then link it dynamically so I have full diff --git a/sys-apps/memtest86+/memtest86+-5.01-r1.ebuild b/sys-apps/memtest86+/memtest86+-5.01-r1.ebuild index f18f5b0..6186228 100644 --- a/sys-apps/memtest86+/memtest86+-5.01-r1.ebuild +++ b/sys-apps/memtest86+/memtest86+-5.01-r1.ebuild @@ -29,6 +29,7 @@ src_prepare() { epatch "${FILESDIR}"/${P}-no-scp.patch epatch "${FILESDIR}"/${P}-io-extern-inline.patch #548312 epatch "${FILESDIR}"/${P}-reboot-def.patch #548312 + epatch "${FILESDIR}"/${P}-no-clean.patch #557890 if use serial ; then sed -i \