From: Zac Medico Date: Fri, 8 Jul 2011 17:22:46 +0000 (-0700) Subject: Add QA Notice for hasq/useq calls (bug #199722). X-Git-Tag: v2.2.0_alpha44~38 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=039439c2cc1546701cbb7403ea387581f08d5be0;p=portage.git Add QA Notice for hasq/useq calls (bug #199722). --- diff --git a/bin/ebuild.sh b/bin/ebuild.sh index 77a21f7ee..2ef40cbd0 100755 --- a/bin/ebuild.sh +++ b/bin/ebuild.sh @@ -128,6 +128,7 @@ esyslog() { } useq() { + eqawarn "QA Notice: The 'useq' function is deprecated (replaced by 'use')" use ${1} } diff --git a/bin/isolated-functions.sh b/bin/isolated-functions.sh index 5fbdd01d8..9d633973b 100644 --- a/bin/isolated-functions.sh +++ b/bin/isolated-functions.sh @@ -512,6 +512,7 @@ if [[ -z ${XARGS} ]] ; then fi hasq() { + eqawarn "QA Notice: The 'hasq' function is deprecated (replaced by 'has')" has "$@" }