From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3DC521382C5 for ; Sun, 28 Jun 2020 22:06:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 71CDFE0936; Sun, 28 Jun 2020 22:06:39 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5B125E0936 for ; Sun, 28 Jun 2020 22:06:39 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 45AA834F066 for ; Sun, 28 Jun 2020 22:06:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AD83A1AC for ; Sun, 28 Jun 2020 22:06:36 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1593381986.c7fca1e78622356c562e049cc1aa4ebfd3b456f0.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/mpir/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/mpir/mpir-3.0.0.ebuild X-VCS-Directories: sci-libs/mpir/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: c7fca1e78622356c562e049cc1aa4ebfd3b456f0 X-VCS-Branch: master Date: Sun, 28 Jun 2020 22:06:36 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 4a889d42-b44c-461b-93ad-8f519f1a5e8b X-Archives-Hash: 8f31c8608b40bb94d5e280cc74a560d6 commit: c7fca1e78622356c562e049cc1aa4ebfd3b456f0 Author: Mike Gilbert gentoo org> AuthorDate: Sun Jun 28 22:06:26 2020 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Sun Jun 28 22:06:26 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7fca1e7 sci-libs/mpir: fix bash syntax Closes: https://bugs.gentoo.org/725554 Signed-off-by: Mike Gilbert gentoo.org> sci-libs/mpir/mpir-3.0.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sci-libs/mpir/mpir-3.0.0.ebuild b/sci-libs/mpir/mpir-3.0.0.ebuild index dd1e6cc41e8..b22fb7b3603 100644 --- a/sci-libs/mpir/mpir-3.0.0.ebuild +++ b/sci-libs/mpir/mpir-3.0.0.ebuild @@ -65,7 +65,7 @@ src_configure() { $(use_enable static-libs static) ) # https://bugs.gentoo.org/661430 - if !use amd64 && !use x86; then + if ! use amd64 && ! use x86; then myeconfargs+=( --with-yasm=/bin/false ) fi econf "${myeconfargs[@]}"