Gentoo Archives: gentoo-commits

From: Sergei Trofimovich <slyfox@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/glibc/
Date: Sat, 03 Feb 2018 01:39:07
Message-Id: 1517621407.cb46887f4a09108a38d383295c357d786df210c3.slyfox@gentoo
1 commit: cb46887f4a09108a38d383295c357d786df210c3
2 Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
3 AuthorDate: Sat Feb 3 01:30:07 2018 +0000
4 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 3 01:30:07 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb46887f
7
8 sys-libs/glibc: cleanup: use [[, not [
9
10 Package-Manager: Portage-2.3.20, Repoman-2.3.6
11
12 sys-libs/glibc/glibc-2.27-r1.ebuild | 2 +-
13 sys-libs/glibc/glibc-9999.ebuild | 2 +-
14 2 files changed, 2 insertions(+), 2 deletions(-)
15
16 diff --git a/sys-libs/glibc/glibc-2.27-r1.ebuild b/sys-libs/glibc/glibc-2.27-r1.ebuild
17 index 531dbbd5534..83df2bf9e6b 100644
18 --- a/sys-libs/glibc/glibc-2.27-r1.ebuild
19 +++ b/sys-libs/glibc/glibc-2.27-r1.ebuild
20 @@ -657,7 +657,7 @@ sanity_prechecks() {
21 local STAT=$?
22 rm -f "${T}/check-ia32-emulation.elf32"
23 eend $STAT
24 - [ $STAT -eq 0 ] || die "CONFIG_IA32_EMULATION must be enabled in the kernel to compile a multilib glibc."
25 + [[ $STAT -eq 0 ]] || die "CONFIG_IA32_EMULATION must be enabled in the kernel to compile a multilib glibc."
26 fi
27
28 fi
29
30 diff --git a/sys-libs/glibc/glibc-9999.ebuild b/sys-libs/glibc/glibc-9999.ebuild
31 index 3903ddf0d1b..ec4e7fdcfb1 100644
32 --- a/sys-libs/glibc/glibc-9999.ebuild
33 +++ b/sys-libs/glibc/glibc-9999.ebuild
34 @@ -657,7 +657,7 @@ sanity_prechecks() {
35 local STAT=$?
36 rm -f "${T}/check-ia32-emulation.elf32"
37 eend $STAT
38 - [ $STAT -eq 0 ] || die "CONFIG_IA32_EMULATION must be enabled in the kernel to compile a multilib glibc."
39 + [[ $STAT -eq 0 ]] || die "CONFIG_IA32_EMULATION must be enabled in the kernel to compile a multilib glibc."
40 fi
41
42 fi