summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2008-04-10 16:19:30 +0000
committerZac Medico <zmedico@gentoo.org>2008-04-10 16:19:30 +0000
commit9007d72fee8d482db501032559fe4eb593f95fd9 (patch)
treeef86d97aced66358eb7a927344cad603721eef1d /bin
parentd8248bfc424ba70ab4a524e3a232d80eb27ed094 (diff)
downloadportage-9007d72fee8d482db501032559fe4eb593f95fd9.tar.gz
portage-9007d72fee8d482db501032559fe4eb593f95fd9.tar.bz2
portage-9007d72fee8d482db501032559fe4eb593f95fd9.zip
Make the "this code is not 64bit clean" die less strict like it was before so
that maintainers aren't disturbed by too many bugs like bug #216848. svn path=/main/branches/2.1.2/; revision=9802
Diffstat (limited to 'bin')
-rwxr-xr-xbin/misc-functions.sh6
1 files changed, 1 insertions, 5 deletions
diff --git a/bin/misc-functions.sh b/bin/misc-functions.sh
index b326cdd16..e8ab7b05c 100755
--- a/bin/misc-functions.sh
+++ b/bin/misc-functions.sh
@@ -312,11 +312,7 @@ install_qa_check() {
eqawarn " but will almost certainly crash on 64bit architectures."
eqawarn "${f}"
vecho -ne '\a\n'
- # just warn on 32bit hosts but bail on 64bit hosts
- case ${CHOST} in
- alpha*|ia64*|powerpc64*|mips64*|sparc64*|x86_64*) die "this code is not 64bit clean";;
- *) abort="yes";;
- esac
+ abort="yes"
fi
if [[ ${abort} == "yes" ]] ; then
echo "Please do not file a Gentoo bug and instead" \