commit: bfa036fafc1e7e940f4a9a1a2dce573daf0efb74 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Thu Oct 23 17:44:09 2025 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Thu Oct 23 17:44:09 2025 +0000 URL: https://gitweb.gentoo.org/proj/binutils-config.git/commit/?id=bfa036fa
Error out on bad symlinks Followup to d26221d21a851f84a639b44477f6dd94056a7058 as our stage issues should be fixed now. Bug: https://bugs.gentoo.org/936644 Signed-off-by: Sam James <sam <AT> gentoo.org> src/binutils-config | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/binutils-config b/src/binutils-config index 0160196..fa5ad4f 100755 --- a/src/binutils-config +++ b/src/binutils-config @@ -429,8 +429,7 @@ set_HOST() { if [[ -z ${HOST} ]] ; then eerror "Cannot determine CHOST. Something is badly broken." - # once our current stage build problems are fixed, let's enable this: - # exit 1 + exit 1 fi }
