From: Niki Roo Date: Wed, 18 Sep 2019 20:29:59 +0000 (+0200) Subject: configure change OK/KO colours X-Git-Url: http://git.nikiroo.be/?p=fanfix.git;a=commitdiff_plain;h=7e50d3899ffadce4b9a83bcdbea63fbd588160a7 configure change OK/KO colours --- diff --git a/configure.sh b/configure.sh index 1e12397..15ae180 100755 --- a/configure.sh +++ b/configure.sh @@ -68,8 +68,10 @@ if [ "`whereis tput`" = "tput:" ]; then ko='"[ !! ]"'; cols=80; else - ok='"`tput bold`[`tput setf 2` OK `tput init``tput bold`]`tput init`"'; - ko='"`tput bold`[`tput setf 4` !! `tput init``tput bold`]`tput init`"'; + #ok='"`tput bold`[`tput setf 2` OK `tput init``tput bold`]`tput init`"'; + #ko='"`tput bold`[`tput setf 4` !! `tput init``tput bold`]`tput init`"'; + ok='"`tput bold`[`tput setaf 2` OK `tput init``tput bold`]`tput init`"'; + ko='"`tput bold`[`tput setaf 1` !! `tput init``tput bold`]`tput init`"'; cols='"`tput cols`"'; fi;