public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] portage r12793 - main/trunk/bin
@ 2009-03-08 21:40 Mike Frysinger (vapier)
  0 siblings, 0 replies; only message in thread
From: Mike Frysinger (vapier) @ 2009-03-08 21:40 UTC (permalink / raw
  To: gentoo-commits

Author: vapier
Date: 2009-03-08 21:40:35 +0000 (Sun, 08 Mar 2009)
New Revision: 12793

Modified:
   main/trunk/bin/misc-functions.sh
Log:
for pointers cast to 32bit ints, we always want to abort on 64bit systems, not just when FEATURES=stricter

Modified: main/trunk/bin/misc-functions.sh
===================================================================
--- main/trunk/bin/misc-functions.sh	2009-03-08 21:27:24 UTC (rev 12792)
+++ main/trunk/bin/misc-functions.sh	2009-03-08 21:40:35 UTC (rev 12793)
@@ -415,14 +415,18 @@
 			fi
 
 		fi
-		if [[ $abort = yes ]] && [[ $gentoo_bug != yes ]] ; then
-			echo "Please do not file a Gentoo bug and instead" \
-			"report the above QA issues directly to the upstream" \
-			"developers of this software." | fmt -w 70 | \
-			while read line ; do eqawarn "${line}" ; done
-			eqawarn "Homepage: ${HOMEPAGE}"
+		if [[ ${abort} == "yes" ]] ; then
+			if [[ ${gentoo_bug} == "yes" ]] ; then
+				die "poor code kills airplanes"
+			else
+				echo "Please do not file a Gentoo bug and instead" \
+				"report the above QA issues directly to the upstream" \
+				"developers of this software." | fmt -w 70 | \
+				while read line ; do eqawarn "${line}" ; done
+				eqawarn "Homepage: ${HOMEPAGE}"
+				hasq stricter ${FEATURES} && die "poor code kills airplanes"
+			fi
 		fi
-		[[ ${abort} == "yes" ]] && hasq stricter ${FEATURES} && die "poor code kills airplanes"
 	fi
 
 	# Compiled python objects do not belong in /usr/share (FHS violation)




^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2009-03-08 21:40 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-03-08 21:40 [gentoo-commits] portage r12793 - main/trunk/bin Mike Frysinger (vapier)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox