diff options
author | Zac Medico <zmedico@gentoo.org> | 2010-09-12 19:49:29 -0700 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2010-09-12 19:49:29 -0700 |
commit | 2287239ef4850da216a3ea5b83f2c445c9a04e45 (patch) | |
tree | 22fc91b26f9969ce8d2fddd9ba201643aaaba312 | |
parent | Bug #336142 - Use a longer timeout for ebuild-ipc, in case the system is (diff) | |
download | portage-2.2_rc81.tar.gz portage-2.2_rc81.tar.bz2 portage-2.2_rc81.zip |
Bug #337031 - Don't make "always overflow destination buffers" gccv2.2_rc81
warnings fatal for now.
-rwxr-xr-x | bin/misc-functions.sh | 7 |
1 files changed, 4 insertions, 3 deletions
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" |