Gentoo Archives: gentoo-commits

From: Fabian Groffen <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/prefix:master commit in: scripts/
Date: Sat, 17 Apr 2021 08:34:47
Message-Id: 1618648308.a29cb0c28df448a5c47bf2d793fb63437c7a1feb.grobian@gentoo
1 commit: a29cb0c28df448a5c47bf2d793fb63437c7a1feb
2 Author: Fabian Groffen <grobian <AT> gentoo <DOT> org>
3 AuthorDate: Sat Apr 17 08:31:48 2021 +0000
4 Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 17 08:31:48 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=a29cb0c2
7
8 scripts/bootstrap-prefix: fix non-RAP bootstraps, bug #782880
9
10 Force success return at end of configure_toolchain such that a previous
11 condition expression doesn't accidentially affect the return code.
12
13 Thanks hsk17 for finding this issue.
14
15 Closes: https://bugs.gentoo.org/782880
16 Signed-off-by: Fabian Groffen <grobian <AT> gentoo.org>
17
18 scripts/bootstrap-prefix.sh | 2 +-
19 1 file changed, 1 insertion(+), 1 deletion(-)
20
21 diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh
22 index dd534d0aac..566d692a19 100755
23 --- a/scripts/bootstrap-prefix.sh
24 +++ b/scripts/bootstrap-prefix.sh
25 @@ -282,7 +282,7 @@ configure_toolchain() {
26 ;;
27 esac
28
29 - return
30 + return 0
31 }
32
33 bootstrap_setup() {