summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbin/misc-functions.sh6
1 files changed, 4 insertions, 2 deletions
diff --git a/bin/misc-functions.sh b/bin/misc-functions.sh
index 5e7d29b7..b3b01cbc 100755
--- a/bin/misc-functions.sh
+++ b/bin/misc-functions.sh
@@ -418,14 +418,16 @@ install_qa_check() {
fi
if [[ ${abort} == "yes" ]] ; then
if [[ ${gentoo_bug} == "yes" ]] ; then
- die "poor code kills airplanes"
+ die "install aborted due to" \
+ "poor programming practices shown above"
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"
+ hasq stricter ${FEATURES} && die "install aborted due to" \
+ "poor programming practices shown above"
fi
fi
fi