From be4d793faa218b6991ff7fd86eacf2c833284919 Mon Sep 17 00:00:00 2001 From: Patrick Welche Date: Wed, 10 Apr 2013 11:34:11 +0100 Subject: configure: test(1) uses = not == for string comparison MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Avoids a bash-ism. Signed-off-by: Patrick Welche Acked-by: Roger Pau Monné Acked-by: Ian Campbell --- stubdom/configure | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'stubdom') diff --git a/stubdom/configure b/stubdom/configure index 51ca6766f0..218457f663 100755 --- a/stubdom/configure +++ b/stubdom/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 -- cgit v1.2.3