summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabian Groffen <grobian@gentoo.org>2021-04-17 10:31:48 +0200
committerFabian Groffen <grobian@gentoo.org>2021-04-17 10:31:48 +0200
commita29cb0c28df448a5c47bf2d793fb63437c7a1feb (patch)
tree32d6648eb54ed13288bbe0fed58a7b683eccac7c
parentsys-apps/portage-3.0.18: version bump (diff)
downloadprefix-a29cb0c2.tar.gz
prefix-a29cb0c2.tar.bz2
prefix-a29cb0c2.zip
scripts/bootstrap-prefix: fix non-RAP bootstraps, bug #782880
Force success return at end of configure_toolchain such that a previous condition expression doesn't accidentially affect the return code. Thanks hsk17 for finding this issue. Closes: https://bugs.gentoo.org/782880 Signed-off-by: Fabian Groffen <grobian@gentoo.org>
-rwxr-xr-xscripts/bootstrap-prefix.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh
index dd534d0aac..566d692a19 100755
--- a/scripts/bootstrap-prefix.sh
+++ b/scripts/bootstrap-prefix.sh
@@ -282,7 +282,7 @@ configure_toolchain() {
;;
esac
- return
+ return 0
}
bootstrap_setup() {