From: Zac Medico Date: Mon, 13 Sep 2010 02:49:29 +0000 (-0700) Subject: Bug #337031 - Don't make "always overflow destination buffers" gcc X-Git-Tag: v2.2_rc81 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=2287239ef4850da216a3ea5b83f2c445c9a04e45;p=portage.git Bug #337031 - Don't make "always overflow destination buffers" gcc warnings fatal for now. --- diff --git a/bin/misc-functions.sh b/bin/misc-functions.sh index 36be6a986..7d56be1e4 100755 --- a/bin/misc-functions.sh +++ b/bin/misc-functions.sh @@ -596,9 +596,10 @@ install_qa_check() { f=$(LC_ALL=C $grep_cmd "${m}" "${PORTAGE_LOG_FILE}") if [[ -n ${f} ]] ; then abort="yes" - case "$m" in - ": warning: call to .* will always overflow destination buffer$") always_overflow=yes ;; - esac + # for now, don't make this fatal (see bug #337031) + #case "$m" in + # ": warning: call to .* will always overflow destination buffer$") always_overflow=yes ;; + #esac if [[ $always_overflow = yes ]] ; then eerror eerror "QA Notice: Package has poor programming practices which may compile"