summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2007-10-29 10:01:25 +0100
committerJim Meyering <meyering@redhat.com>2007-10-29 10:01:25 +0100
commitcb75780b507b5682c429eff8c8b1f42b78c84664 (patch)
tree2383b968b43b1e03723c5bd253a21dd00b2771e4
parent3e9a0b87d70cd0bce1d943c72efe858cbad086a2 (diff)
downloadcoreutils-cb75780b507b5682c429eff8c8b1f42b78c84664.tar.xz
Remove spurious semicolon after "else".
* build-aux/check.mk (am__tty_colors): Fix syntax error.
-rw-r--r--ChangeLog3
-rw-r--r--build-aux/check.mk2
2 files changed, 4 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 05bc41ee1..dcf727a69 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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=''; \
blu=''; \
std=''; \
-else; \
+else \
red=; \
grn=; \
lgn=; \