jeyzu pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=f8a09fb6dbda51be69ac0113868d9c1412243705

commit f8a09fb6dbda51be69ac0113868d9c1412243705
Author: Jérémy Zurcher <jer...@asynk.ch>
Date:   Tue Nov 19 15:58:16 2013 +0100

    efl.m4: change backslash sequences capability detection
    
    removes ./configure: line 14173: test: =: unary operator expected
---
 m4/efl.m4 | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/m4/efl.m4 b/m4/efl.m4
index 7e27700..3671ba8 100644
--- a/m4/efl.m4
+++ b/m4/efl.m4
@@ -58,10 +58,10 @@ case "$TERM" in
 esac
 
 if test "${want_color}" = "yes"; then
-   if test `echo -e` = -e; then
-      echoopt=
-   else
+   if test `echo -e x` = x; then
       echoopt=-e
+   else
+      echoopt=
    fi
 
    COLOR_YES=`echo $echoopt "\033@<:@1;32m"`

-- 


Reply via email to