From: Philippe Proulx Date: Sat, 10 Aug 2019 18:48:23 +0000 (-0400) Subject: m4/pprint.m4: check that the terminal supports at least 8 colors X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=commitdiff_plain;h=2ddc65227cb92cfca4777eaad6dc9abd609cec26 m4/pprint.m4: check that the terminal supports at least 8 colors Checking for 8 colors is enough here and makes rudimentary terminals have colors in the report. Signed-off-by: Philippe Proulx Change-Id: Icf49c3f24aa3546a81a52f4627b9f39ab88f929c Reviewed-on: https://review.lttng.org/c/babeltrace/+/1866 Tested-by: jenkins --- diff --git a/m4/pprint.m4 b/m4/pprint.m4 index e55edb6e..9be4a126 100644 --- a/m4/pprint.m4 +++ b/m4/pprint.m4 @@ -15,7 +15,7 @@ AC_DEFUN([PPRINT_INIT], [ AC_PATH_PROG([pprint_tput], [tput]) AS_IF([test -n "$pprint_tput"], [ - AS_IF([test -n "$PS1" && test `"$pprint_tput" colors` -eq 256 && test -t 1], [ + AS_IF([test -n "$PS1" && test `"$pprint_tput" colors` -ge 8 && test -t 1], [ # interactive shell and colors supported and standard output # file descriptor is opened on a terminal PPRINT_COLOR_TXTBLK="`"$pprint_tput" setaf 0`"