Received: by mail.netbsd.org (Postfix, from userid 605) id 8435584ECC; Thu, 15 Dec 2022 11:25:39 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id AAF5184E55 for ; Thu, 15 Dec 2022 11:25:38 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id C4a9waX7xkAj for ; Thu, 15 Dec 2022 11:25:38 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 0ABF984EEA for ; Thu, 15 Dec 2022 11:25:38 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 0303BFA90; Thu, 15 Dec 2022 11:25:38 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1671103537201170" MIME-Version: 1.0 Date: Thu, 15 Dec 2022 11:25:37 +0000 From: "Amitai Schleier" Subject: CVS commit: pkgsrc/mail/libsrs2 To: pkgsrc-changes@NetBSD.org Reply-To: schmonz@netbsd.org X-Mailer: log_accum Message-Id: <20221215112538.0303BFA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1671103537201170 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: schmonz Date: Thu Dec 15 11:25:37 UTC 2022 Modified Files: pkgsrc/mail/libsrs2: Makefile Log Message: Mark MAKE_JOBS_SAFE=no (likely fixes NetBSD-current bulk build). To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 pkgsrc/mail/libsrs2/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1671103537201170 Content-Disposition: inline Content-Length: 704 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/mail/libsrs2/Makefile diff -u pkgsrc/mail/libsrs2/Makefile:1.2 pkgsrc/mail/libsrs2/Makefile:1.3 --- pkgsrc/mail/libsrs2/Makefile:1.2 Wed Aug 16 20:21:10 2017 +++ pkgsrc/mail/libsrs2/Makefile Thu Dec 15 11:25:37 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2017/08/16 20:21:10 wiz Exp $ +# $NetBSD: Makefile,v 1.3 2022/12/15 11:25:37 schmonz Exp $ DISTNAME= libsrs2-1.0.18 CATEGORIES= mail @@ -14,4 +14,8 @@ CONFLICTS+= p5-Mail-SRS-[0-9]* GNU_CONFIGURE= yes USE_LIBTOOL= yes +# for instance, `ar cru libsrs2.a srs2.o sha1.o` sometimes gives +# "ar: sha1.o: No such file or directory" on NetBSD with cc -pipe +MAKE_JOBS_SAFE= no + .include "../../mk/bsd.pkg.mk" --_----------=_1671103537201170--