From: Zac Medico Date: Fri, 4 Jan 2008 20:49:05 +0000 (-0000) Subject: Send eerror and ewarn messages to stderr. This is important in X-Git-Tag: v2.2_pre1~75 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=b36c8955cedf9e01869efe8400c1ed98ab21ec98;p=portage.git Send eerror and ewarn messages to stderr. This is important in case somebody calls portageq inside a global scope command substitution. The output needs to go to stderr so that the die message from the subshell is visible. svn path=/main/trunk/; revision=9140 --- diff --git a/bin/isolated-functions.sh b/bin/isolated-functions.sh index d7218b92f..e5f65e698 100755 --- a/bin/isolated-functions.sh +++ b/bin/isolated-functions.sh @@ -214,7 +214,7 @@ einfon() { ewarn() { elog_base WARN "$*" [[ ${RC_ENDCOL} != "yes" && ${LAST_E_CMD} == "ebegin" ]] && echo - echo -e " ${WARN}*${NORMAL} ${RC_INDENTATION}$*" + echo -e " ${WARN}*${NORMAL} ${RC_INDENTATION}$*" >&2 LAST_E_CMD="ewarn" return 0 } @@ -222,7 +222,7 @@ ewarn() { eerror() { elog_base ERROR "$*" [[ ${RC_ENDCOL} != "yes" && ${LAST_E_CMD} == "ebegin" ]] && echo - echo -e " ${BAD}*${NORMAL} ${RC_INDENTATION}$*" + echo -e " ${BAD}*${NORMAL} ${RC_INDENTATION}$*" >&2 LAST_E_CMD="eerror" return 0 }