mirror of
https://github.com/coreutils/coreutils.git
synced 2024-11-28 12:35:36 +08:00
Don't try to colorize a dumb terminal.
* build-aux/check.mk (am__tty_colors): Skip colors if $TERM is "dumb". Thanks to Bob Proulx.
This commit is contained in:
parent
0cc7aa3a29
commit
b63b1b4ce2
@ -1,5 +1,9 @@
|
||||
2007-10-29 Jim Meyering <meyering@redhat.com>
|
||||
|
||||
Don't try to colorize a dumb terminal.
|
||||
* build-aux/check.mk (am__tty_colors): Skip colors if $TERM is "dumb".
|
||||
Thanks to Bob Proulx.
|
||||
|
||||
Remove gnulib's printf-posix module, for now.
|
||||
* bootstrap.conf (gnulib_modules): It caused too many test failures.
|
||||
|
||||
|
@ -60,7 +60,7 @@ END { \
|
||||
# this fails; a conservative approach. Of course do not redirect
|
||||
# stdout here, just stderr...
|
||||
am__tty_colors = \
|
||||
if test -t 1 2>/dev/null && test -n "$$TERM"; then \
|
||||
if test -t 1 2>/dev/null && test -n "$$TERM" && test "$$TERM" != dumb; then \
|
||||
red='[0;31m'; \
|
||||
grn='[0;32m'; \
|
||||
lgn='[1;32m'; \
|
||||
|
Loading…
Reference in New Issue
Block a user