Ignore errors when setting terminal colors

This commit is contained in:
Nirgal Vourgère
2020-10-25 11:21:34 +01:00
parent 9470df473d
commit 78c4f12eac

View File

@@ -319,10 +319,10 @@ dnl doc/reference/libmdb/Makefile])
################################################## ##################################################
bold_red=$(tput bold)$(tput setf 4) bold_red=$(tput bold 2>/dev/null)$(tput setf 4 2>/dev/null)
bold_green=$(tput bold)$(tput setf 2) bold_green=$(tput bold 2>/dev/null)$(tput setf 2 2>/dev/null)
bold=$(tput bold) bold=$(tput bold 2>/dev/null)
reset=$(tput sgr0) reset=$(tput sgr0 2>/dev/null)
AC_MSG_NOTICE([]) AC_MSG_NOTICE([])
AC_MSG_NOTICE([${bold}MDB Tools $VERSION - Configuration summary${reset}]) AC_MSG_NOTICE([${bold}MDB Tools $VERSION - Configuration summary${reset}])
AC_MSG_NOTICE([]) AC_MSG_NOTICE([])