]> xenbits.xensource.com Git - people/liuw/stubdom.git/commitdiff
configure: test(1) uses = not == for string comparison
authorPatrick Welche <prlw1@cam.ac.uk>
Wed, 10 Apr 2013 10:34:11 +0000 (11:34 +0100)
committerIan Campbell <ian.campbell@citrix.com>
Wed, 17 Apr 2013 13:29:17 +0000 (14:29 +0100)
Avoids a bash-ism.

Signed-off-by: Patrick Welche <prlw1@cam.ac.uk>
Acked-by: Roger Pau Monné <roger.pau@citrix.com>
Acked-by: Ian Campbell <ian.campbell@citrix.com>
configure

index 51ca6766f016f269fb4c73e44b430da0827d3047..218457f663b4501a43a6c33a58259f3053c45505 100755 (executable)
--- a/configure
+++ b/configure
@@ -3119,7 +3119,7 @@ $as_echo "no" >&6; }
 fi
 
 
-if test x"${WGET}" == x"no"
+if test x"${WGET}" = x"no"
 then
     as_fn_error $? "Unable to find wget, please install wget" "$LINENO" 5
 fi
@@ -3168,7 +3168,7 @@ $as_echo "no" >&6; }
 fi
 
 
-if test x"${CMAKE}" == x"no"
+if test x"${CMAKE}" = x"no"
 then
     as_fn_error $? "Unable to find cmake, please install cmake" "$LINENO" 5
 fi