Gentoo Archives: gentoo-commits

From: Mike Gilbert <floppym@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/mpir/
Date: Sun, 28 Jun 2020 22:06:40
Message-Id: 1593381986.c7fca1e78622356c562e049cc1aa4ebfd3b456f0.floppym@gentoo
1 commit: c7fca1e78622356c562e049cc1aa4ebfd3b456f0
2 Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jun 28 22:06:26 2020 +0000
4 Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
5 CommitDate: Sun Jun 28 22:06:26 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7fca1e7
7
8 sci-libs/mpir: fix bash syntax
9
10 Closes: https://bugs.gentoo.org/725554
11 Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>
12
13 sci-libs/mpir/mpir-3.0.0.ebuild | 2 +-
14 1 file changed, 1 insertion(+), 1 deletion(-)
15
16 diff --git a/sci-libs/mpir/mpir-3.0.0.ebuild b/sci-libs/mpir/mpir-3.0.0.ebuild
17 index dd1e6cc41e8..b22fb7b3603 100644
18 --- a/sci-libs/mpir/mpir-3.0.0.ebuild
19 +++ b/sci-libs/mpir/mpir-3.0.0.ebuild
20 @@ -65,7 +65,7 @@ src_configure() {
21 $(use_enable static-libs static)
22 )
23 # https://bugs.gentoo.org/661430
24 - if !use amd64 && !use x86; then
25 + if ! use amd64 && ! use x86; then
26 myeconfargs+=( --with-yasm=/bin/false )
27 fi
28 econf "${myeconfargs[@]}"