diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2013-11-19 15:58:16 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2013-11-19 16:01:05 +0100 |
commit | f8a09fb6dbda51be69ac0113868d9c1412243705 (patch) | |
tree | 61d5f2f7156632f7d99616f23b0ca38645afe3c6 | |
parent | 086c5ae901a2f2bc95b9697e7ec9b102600601f3 (diff) |
efl.m4: change backslash sequences capability detection
removes ./configure: line 14173: test: =: unary operator expected
-rw-r--r-- | m4/efl.m4 | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -58,10 +58,10 @@ case "$TERM" in | |||
58 | esac | 58 | esac |
59 | 59 | ||
60 | if test "${want_color}" = "yes"; then | 60 | if test "${want_color}" = "yes"; then |
61 | if test `echo -e` = -e; then | 61 | if test `echo -e x` = x; then |
62 | echoopt= | ||
63 | else | ||
64 | echoopt=-e | 62 | echoopt=-e |
63 | else | ||
64 | echoopt= | ||
65 | fi | 65 | fi |
66 | 66 | ||
67 | COLOR_YES=`echo $echoopt "\033@<:@1;32m"` | 67 | COLOR_YES=`echo $echoopt "\033@<:@1;32m"` |