diff options
author | Jim Meyering <meyering@redhat.com> | 2007-10-29 10:01:25 +0100 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2007-10-29 10:01:25 +0100 |
commit | cb75780b507b5682c429eff8c8b1f42b78c84664 (patch) | |
tree | 2383b968b43b1e03723c5bd253a21dd00b2771e4 | |
parent | 3e9a0b87d70cd0bce1d943c72efe858cbad086a2 (diff) | |
download | coreutils-cb75780b507b5682c429eff8c8b1f42b78c84664.tar.xz |
Remove spurious semicolon after "else".
* build-aux/check.mk (am__tty_colors): Fix syntax error.
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | build-aux/check.mk | 2 |
2 files changed, 4 insertions, 1 deletions
@@ -1,5 +1,8 @@ 2007-10-29 Jim Meyering <meyering@redhat.com> + 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 8f0d1c097..8e43147a3 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='[1;32m'; \ blu='[1;34m'; \ std='[m'; \ -else; \ +else \ red=; \ grn=; \ lgn=; \ |