Received: by mail.netbsd.org (Postfix, from userid 605) id 4723084DDD; Wed, 23 Jun 2021 08:20:22 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 8383C84DDA for ; Wed, 23 Jun 2021 08:20:21 +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 bp38l7z_Ovjs for ; Wed, 23 Jun 2021 08:20:21 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id DB10F84D28 for ; Wed, 23 Jun 2021 08:20:20 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id CE9A6FA95; Wed, 23 Jun 2021 08:20:20 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1624436420173940" MIME-Version: 1.0 Date: Wed, 23 Jun 2021 08:20:20 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/lang/nodejs To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20210623082020.CE9A6FA95@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1624436420173940 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Wed Jun 23 08:20:20 UTC 2021 Modified Files: pkgsrc/lang/nodejs: Makefile.common Log Message: nodejs: Set correct destination CPU on powerpc To generate a diff of this commit: cvs rdiff -u -r1.41 -r1.42 pkgsrc/lang/nodejs/Makefile.common Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1624436420173940 Content-Disposition: inline Content-Length: 853 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/nodejs/Makefile.common diff -u pkgsrc/lang/nodejs/Makefile.common:1.41 pkgsrc/lang/nodejs/Makefile.common:1.42 --- pkgsrc/lang/nodejs/Makefile.common:1.41 Wed Dec 16 07:43:13 2020 +++ pkgsrc/lang/nodejs/Makefile.common Wed Jun 23 08:20:20 2021 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.41 2020/12/16 07:43:13 adam Exp $ +# $NetBSD: Makefile.common,v 1.42 2021/06/23 08:20:20 nia Exp $ # used by lang/nodejs/Makefile # used by lang/nodejs8/Makefile # used by lang/nodejs10/Makefile @@ -31,6 +31,10 @@ PTHREAD_AUTO_VARS= yes CONFIGURE_ENV.NetBSD+= GYP_DEFINES="OS=netbsd" MAKE_ENV.NetBSD+= GYP_DEFINES="OS=netbsd" +.if ${MACHINE_ARCH} == "powerpc" +CONFIGURE_ARGS+= --dest-cpu=ppc +.endif + .if ${OPSYS} == "Linux" && !exists(/usr/bin/gold) CONFIGURE_ENV+= GYP_DEFINES="linux_use_gold_flags=0" .endif --_----------=_1624436420173940--