diff options
-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" |