summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2008-07-27 12:02:36 +0000
committerZac Medico <zmedico@gentoo.org>2008-07-27 12:02:36 +0000
commit6afc2ce278026a71f9193bdde71beda40ebbeb36 (patch)
tree68985fcd485ed461597c1744ab66cea76a61564e /bin/misc-functions.sh
parentSerialize src_unpack() $DISTDIR access for live ebuilds since otherwise they (diff)
downloadportage-multirepo-6afc2ce278026a71f9193bdde71beda40ebbeb36.tar.gz
portage-multirepo-6afc2ce278026a71f9193bdde71beda40ebbeb36.tar.bz2
portage-multirepo-6afc2ce278026a71f9193bdde71beda40ebbeb36.zip
Fixes from Arfrever:
* Highlight the "Files built without respecting LDFLAGS" QA Notice with red. * Remove scanelf-ignored-LDFLAGS.log when empty. svn path=/main/trunk/; revision=11216
Diffstat (limited to 'bin/misc-functions.sh')
-rwxr-xr-xbin/misc-functions.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/bin/misc-functions.sh b/bin/misc-functions.sh
index 5854de9b..97f55002 100755
--- a/bin/misc-functions.sh
+++ b/bin/misc-functions.sh
@@ -183,12 +183,14 @@ install_qa_check() {
f=$(<"${T}"/scanelf-ignored-LDFLAGS.log)
if [[ -n ${f} ]] ; then
vecho -ne '\a\n'
- eqawarn "QA Notice: Files built without respecting LDFLAGS have been detected"
+ eqawarn "${BAD}QA Notice: Files built without respecting LDFLAGS have been detected"
eqawarn " Please include this file in your report:"
eqawarn " ${T}/scanelf-ignored-LDFLAGS.log"
eqawarn "${f}"
vecho -ne '\a\n'
sleep 1
+ else
+ rm -f "${T}"/scanelf-ignored-LDFLAGS.log
fi
fi
fi