Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id 29AEE7A2F2 for ; Wed, 21 Dec 2016 10:39:17 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id CCBE085604; Wed, 21 Dec 2016 10:39:16 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 5CB078556E for ; Wed, 21 Dec 2016 10:39:16 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id Kw4zgjpTLEID for ; Wed, 21 Dec 2016 10:39:16 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id C045D84CEA for ; Wed, 21 Dec 2016 10:39:15 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id B986EFBA6; Wed, 21 Dec 2016 10:39:15 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_148231675596910" MIME-Version: 1.0 Date: Wed, 21 Dec 2016 10:39:15 +0000 From: "Benny Siegert" Subject: CVS commit: pkgsrc/emulators/qemu To: pkgsrc-changes@NetBSD.org Reply-To: bsiegert@netbsd.org X-Mailer: log_accum Message-Id: <20161221103915.B986EFBA6@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk This is a multi-part message in MIME format. --_----------=_148231675596910 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: bsiegert Date: Wed Dec 21 10:39:15 UTC 2016 Modified Files: pkgsrc/emulators/qemu: Makefile Log Message: Mark not MAKE_JOBS_SAFE. This just failed for me with -j16 but worked fine with MAKE_JOBS=1. To generate a diff of this commit: cvs rdiff -u -r1.156 -r1.157 pkgsrc/emulators/qemu/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_148231675596910 Content-Disposition: inline Content-Length: 784 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/emulators/qemu/Makefile diff -u pkgsrc/emulators/qemu/Makefile:1.156 pkgsrc/emulators/qemu/Makefile:1.157 --- pkgsrc/emulators/qemu/Makefile:1.156 Sun Oct 30 14:48:00 2016 +++ pkgsrc/emulators/qemu/Makefile Wed Dec 21 10:39:15 2016 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.156 2016/10/30 14:48:00 spz Exp $ +# $NetBSD: Makefile,v 1.157 2016/12/21 10:39:15 bsiegert Exp $ DISTNAME= qemu-2.7.0 CATEGORIES= emulators @@ -38,6 +38,9 @@ CONFIGURE_ARGS+= --enable-curses CONFIGURE_ARGS+= --disable-opengl CONFIGURE_ENV+= mansuffix=/${PKGMANDIR} +# Parallel build fails on NetBSD/amd64 +MAKE_JOBS_SAFE= no + NOT_PAX_MPROTECT_SAFE+= bin/qemu-system-aarch64 NOT_PAX_MPROTECT_SAFE+= bin/qemu-system-alpha NOT_PAX_MPROTECT_SAFE+= bin/qemu-system-arm --_----------=_148231675596910--