Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/prefix:master commit in: scripts/
Date: Thu, 30 Jun 2022 12:23:50
Message-Id: 1656591816.8d2be45c944c600d38baf85975a9b4e3bd1a984a.sam@gentoo
1 commit: 8d2be45c944c600d38baf85975a9b4e3bd1a984a
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jun 30 12:23:36 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Thu Jun 30 12:23:36 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=8d2be45c
7
8 bootstrap-prefix.sh: fix if
9
10 Signed-off-by: Sam James <sam <AT> gentoo.org>
11
12 scripts/bootstrap-prefix.sh | 2 +-
13 1 file changed, 1 insertion(+), 1 deletion(-)
14
15 diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh
16 index 7421fa3f57..96d52d8390 100755
17 --- a/scripts/bootstrap-prefix.sh
18 +++ b/scripts/bootstrap-prefix.sh
19 @@ -1541,7 +1541,7 @@ bootstrap_stage1() {
20 || [[ $(bison --version 2>&1) == *GNU" "Bison") "2.[3-7]* ]] \
21 || [[ $(bison --version 2>&1) == *GNU" "Bison") "[3-9]* ]] \
22 || (bootstrap_bison) || return 1
23 - if [[ -x ${ROOT}/tmp/usr/bin/uniq ]]
24 + if [[ -x ${ROOT}/tmp/usr/bin/uniq ]]; then
25 if [[ $(uniq --version 2>&1) == *"(GNU coreutils) "[6789]* ]]; then
26 CP="cp"
27 else