]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
Remove spurious semicolon after "else".
authorJim Meyering <meyering@redhat.com>
Mon, 29 Oct 2007 09:01:25 +0000 (10:01 +0100)
committerJim Meyering <meyering@redhat.com>
Mon, 29 Oct 2007 09:01:25 +0000 (10:01 +0100)
* build-aux/check.mk (am__tty_colors): Fix syntax error.

ChangeLog
build-aux/check.mk

index 05bc41ee1bdf9b32d86ca36fd64dfe44ecb5e11e..dcf727a691fb9379e74824f87d5ea337a5b2a5f9 100644 (file)
--- 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.
index 8f0d1c0973cc208477b95497b2edeb3930c3298e..8e43147a33e27e656ed24a5822d86c4294d14aab 100644 (file)
@@ -66,7 +66,7 @@ if test -t 1 2>/dev/null && test -n "$$TERM"; then    \
   lgn='\e[1;32m';                               \
   blu='\e[1;34m';                               \
   std='\e[m';                                   \
-else;                                          \
+else                                           \
   red=;                                                \
   grn=;                                                \
   lgn=;                                                \