Received: by mail.netbsd.org (Postfix, from userid 605) id E848784E40; Mon, 28 Oct 2019 13:04:30 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 7113084E23 for ; Mon, 28 Oct 2019 13:04:30 +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 xooZHqayXO3z for ; Mon, 28 Oct 2019 13:04:30 +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 C328884E09 for ; Mon, 28 Oct 2019 13:04:29 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id C0FC7FA8D; Mon, 28 Oct 2019 13:04:29 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1572267869182930" MIME-Version: 1.0 Date: Mon, 28 Oct 2019 13:04:29 +0000 From: "Ryo ONODERA" Subject: CVS commit: pkgsrc/www/firefox/patches To: pkgsrc-changes@NetBSD.org Reply-To: ryoon@netbsd.org X-Mailer: log_accum Message-Id: <20191028130429.C0FC7FA8D@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1572267869182930 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: ryoon Date: Mon Oct 28 13:04:29 UTC 2019 Added Files: pkgsrc/www/firefox/patches: patch-build_moz.configure_rust.configure Log Message: Add a forgotten patch To generate a diff of this commit: cvs rdiff -u -r0 -r1.6 \ pkgsrc/www/firefox/patches/patch-build_moz.configure_rust.configure Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1572267869182930 Content-Disposition: inline Content-Length: 1124 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Added files: Index: pkgsrc/www/firefox/patches/patch-build_moz.configure_rust.configure diff -u /dev/null pkgsrc/www/firefox/patches/patch-build_moz.configure_rust.configure:1.6 --- /dev/null Mon Oct 28 13:04:29 2019 +++ pkgsrc/www/firefox/patches/patch-build_moz.configure_rust.configure Mon Oct 28 13:04:29 2019 @@ -0,0 +1,17 @@ +$NetBSD: patch-build_moz.configure_rust.configure,v 1.6 2019/10/28 13:04:29 ryoon Exp $ + +* Do not match rumprun toolchain for NetBSD, + narrowed should be one not two. + +--- build/moz.configure/rust.configure.orig 2019-10-10 18:07:24.000000000 +0000 ++++ build/moz.configure/rust.configure +@@ -321,7 +321,8 @@ def rust_triple_alias(host_or_target, ho + narrowed = [ + c for c in candidates + if c.target.raw_os == host_or_target.raw_os and +- c.target.raw_cpu == host_or_target.raw_cpu ++ c.target.raw_cpu == host_or_target.raw_cpu and ++ not c.rust_target.endswith("-rumprun-netbsd") + ] + if len(narrowed) == 1: + return narrowed[0].rust_target --_----------=_1572267869182930--