Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 8225984FAE for ; Sun, 12 Nov 2023 21:40:39 +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 gasnzD5UzFFC for ; Sun, 12 Nov 2023 21:40:39 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id D8BE484D59 for ; Sun, 12 Nov 2023 21:40:38 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id D22C3FA3D; Sun, 12 Nov 2023 21:40:38 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1699825238261960" MIME-Version: 1.0 Date: Sun, 12 Nov 2023 21:40:38 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/archivers/zstd To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20231112214038.D22C3FA3D@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1699825238261960 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Sun Nov 12 21:40:38 UTC 2023 Modified Files: pkgsrc/archivers/zstd: Makefile Log Message: Fix braino. To generate a diff of this commit: cvs rdiff -u -r1.49 -r1.50 pkgsrc/archivers/zstd/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1699825238261960 Content-Disposition: inline Content-Length: 744 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/archivers/zstd/Makefile diff -u pkgsrc/archivers/zstd/Makefile:1.49 pkgsrc/archivers/zstd/Makefile:1.50 --- pkgsrc/archivers/zstd/Makefile:1.49 Fri Nov 10 11:49:31 2023 +++ pkgsrc/archivers/zstd/Makefile Sun Nov 12 21:40:38 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.49 2023/11/10 11:49:31 nia Exp $ +# $NetBSD: Makefile,v 1.50 2023/11/12 21:40:38 nia Exp $ DISTNAME= zstd-1.5.5 CATEGORIES= archivers @@ -44,7 +44,7 @@ PTHREAD_OPTS= optional .include "../../mk/pthread.buildlink3.mk" -.if ${PTHREAD_TYPE} == "native" || ${MACHINE_PLATFORM:MDarwin-*-powerpc*} +.if ${PTHREAD_TYPE} == "native" && !${MACHINE_PLATFORM:MDarwin-*-powerpc*} BUILD_TARGET= lib zstd zlibwrapper TEST_TARGET= test .else --_----------=_1699825238261960--