From: Jim Meyering Date: Mon, 29 Oct 2007 09:01:25 +0000 (+0100) Subject: Remove spurious semicolon after "else". X-Git-Tag: v6.9.89~20 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cb75780b507b5682c429eff8c8b1f42b78c84664;p=thirdparty%2Fcoreutils.git Remove spurious semicolon after "else". * build-aux/check.mk (am__tty_colors): Fix syntax error. --- diff --git a/ChangeLog b/ChangeLog index 05bc41ee1b..dcf727a691 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2007-10-29 Jim Meyering + Remove spurious semicolon after "else". + * build-aux/check.mk (am__tty_colors): Fix syntax error. + If $TERM is empty, don't use colors. This helps the buildbot, since it produces its result in an environment with a tty, but we don't want color codes in that case. diff --git a/build-aux/check.mk b/build-aux/check.mk index 8f0d1c0973..8e43147a33 100644 --- a/build-aux/check.mk +++ b/build-aux/check.mk @@ -66,7 +66,7 @@ if test -t 1 2>/dev/null && test -n "$$TERM"; then \ lgn=''; \ blu=''; \ std=''; \ -else; \ +else \ red=; \ grn=; \ lgn=; \