From: Gary V. Vaughan Date: Thu, 25 Oct 2012 12:06:50 +0000 (-0500) Subject: bootstrap: don't $tc_standout spaces, it's ugly! X-Git-Tag: v2.4.2.418~88 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=21538ee961ede123015d22c596313e83b2fd35c7;p=thirdparty%2Flibtool.git bootstrap: don't $tc_standout spaces, it's ugly! * gl/build-aux/funclib.sh (func_error): Move the prefix indent before $tc_standout to avoid bright red inverse spaces. * bootstrap: Regenerate. Signed-off-by: Gary V. Vaughan --- diff --git a/bootstrap b/bootstrap index ab7aed68a..5363870f1 100755 --- a/bootstrap +++ b/bootstrap @@ -618,7 +618,7 @@ func_error () $require_term_colors - func_echo_infix_1 "$tc_standout${tc_red} error$tc_reset" "$*" >&2 + func_echo_infix_1 " $tc_standout${tc_red}error$tc_reset" "$*" >&2 } diff --git a/gl/build-aux/funclib.sh b/gl/build-aux/funclib.sh index ce5771342..c48e0c053 100644 --- a/gl/build-aux/funclib.sh +++ b/gl/build-aux/funclib.sh @@ -608,7 +608,7 @@ func_error () $require_term_colors - func_echo_infix_1 "$tc_standout${tc_red} error$tc_reset" "$*" >&2 + func_echo_infix_1 " $tc_standout${tc_red}error$tc_reset" "$*" >&2 }