m4/ac-plugins: evaluate color escape so it works everywhere.

the color escapes were being evaluated only on "echo -e", but we're
using it in "cat" statements as well. Then evaluate the color escape
so it will work everywhere.
This commit is contained in:
Gustavo Sverzut Barbieri 2014-03-14 11:50:10 -03:00
parent 5ca6eaf418
commit 36d542f84e
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@ define([_XTERM_COLORS],
[
# Check for XTerm and define some colors
if test "x$TERM" = "xxterm" -o "x$TERM" = "xscreen"; then
COLOR_PREF="\0033\0133"
COLOR_PREF=`echo -e "\0033\0133"`
COLOR_H="${COLOR_PREF}1m"
COLOR_HGREEN="${COLOR_PREF}1;32m"
COLOR_HRED="${COLOR_PREF}1;31m"