commit: 6569381d5d22b287963bcbabe4c510fad9845ea2 Author: Zac Medico <zmedico <AT> gentoo <DOT> org> AuthorDate: Sat Mar 21 21:27:43 2020 +0000 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org> CommitDate: Sat Mar 21 21:42:42 2020 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=6569381d
eqawarn: output to build log regardless of --quiet (bug 713818) Make eqwarn output to the build log regardless of --quiet, via echo to stderr instead of __vecho. This __vecho usage was originally introduced in commit c53f52941c88, which was during the time when build output went to the tty regardless of --quiet mode (that changed in commit 0398470e5029). Bug: https://bugs.gentoo.org/713818 Signed-off-by: Zac Medico <zmedico <AT> gentoo.org> bin/isolated-functions.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/isolated-functions.sh b/bin/isolated-functions.sh index e8d41fd64..fde684013 100644 --- a/bin/isolated-functions.sh +++ b/bin/isolated-functions.sh @@ -1,5 +1,5 @@ #!/bin/bash -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 source "${PORTAGE_BIN_PATH}/eapi.sh" || exit 1 @@ -270,7 +270,7 @@ eqawarn() { __elog_base QA "$*" [[ ${RC_ENDCOL} != "yes" && ${LAST_E_CMD} == "ebegin" ]] && echo >&2 echo -e "$@" | while read -r ; do - __vecho " $WARN*$NORMAL $REPLY" + echo " $WARN*$NORMAL $REPLY" >&2 done LAST_E_CMD="eqawarn" return 0
