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:59:10
Message-Id: 1656593933.74526e8c2f68396a50d90d462b088ea67bc6c832.sam@gentoo
1 commit: 74526e8c2f68396a50d90d462b088ea67bc6c832
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jun 30 12:58:53 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Thu Jun 30 12:58:53 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=74526e8c
7
8 bootstrap-prefix.sh: fix LD_LIBRARY_PATH check typo
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 d170bf8706..fbf7af3b68 100755
17 --- a/scripts/bootstrap-prefix.sh
18 +++ b/scripts/bootstrap-prefix.sh
19 @@ -3357,7 +3357,7 @@ then
20 exit 1
21 fi
22
23 -if [[ -n ${LD_LIBARY_PATH} || -n ${DYLD_LIBRARY_PATH} ]] ; then
24 +if [[ -n ${LD_LIBRARY_PATH} || -n ${DYLD_LIBRARY_PATH} ]] ; then
25 eerror "EEEEEK! You have LD_LIBRARY_PATH or DYLD_LIBRARY_PATH set"
26 eerror "in your environment. This is a guarantee for TROUBLE."
27 eerror "Cowardly refusing to operate any further this way!"