From: Michael Tremer Date: Fri, 1 May 2009 20:22:20 +0000 (+0200) Subject: Sending error messages of buildscripts to stderr. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1b2950a882e57de46952db09a05ead1a40268f3c;p=ipfire-3.x.git Sending error messages of buildscripts to stderr. --- diff --git a/tools/make-beautify b/tools/make-beautify index 127d086b6..a889b46b9 100644 --- a/tools/make-beautify +++ b/tools/make-beautify @@ -208,9 +208,9 @@ function shrink_string() { } # End of shrink_string() dialogerror() { - beautify message FAIL + beautify message FAIL >&2 - echo -ne "${FAIL}ERROR${NORMAL}: ${BOLD}$*${NORMAL}\n" + echo -ne "${FAIL}ERROR${NORMAL}: ${BOLD}$*${NORMAL}\n" >&2 [ -z "$LOGFILE" ] || \ - echo " Check $LOGFILE for errors if applicable" + echo " Check $LOGFILE for errors if applicable" >&2 } # End of dialogerror()