diff options
author | Ganesh Ajjanagadde <gajjanagadde@gmail.com> | 2015-09-20 21:50:17 -0400 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2015-09-21 10:20:45 +0200 |
commit | a0e6e471db25498a09586cfb0861e7753b460ebe (patch) | |
tree | ae88967d06b93569dbef8beeccd82a636e284e3d /configure | |
parent | fd9ac48dc8aebcbd601af34336234d5102b36e21 (diff) | |
download | ffmpeg-a0e6e471db25498a09586cfb0861e7753b460ebe.tar.gz |
configure: silence error if tput not found
If tput is not found for colorizing, error message should be squashed.
Signed-off-by: Ganesh Ajjanagadde <gajjanagadde@gmail.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -418,7 +418,7 @@ EOF } quotes='""' -if test -t 1 && which tput >/dev/null; then +if test -t 1 && which tput >/dev/null 2>&1; then ncolors=$(tput colors) if test -n "$ncolors" && test $ncolors -ge 8; then bold_color=$(tput bold) |