aboutsummaryrefslogtreecommitdiffstats
path: root/stubdom
diff options
context:
space:
mode:
authorPatrick Welche <prlw1@cam.ac.uk>2013-04-10 11:34:11 +0100
committerIan Campbell <ian.campbell@citrix.com>2013-04-17 14:29:17 +0100
commitbe4d793faa218b6991ff7fd86eacf2c833284919 (patch)
tree5c43ac04ab6b58582cb640fe7c619985106cc88c /stubdom
parent717d9e5f764a8ef4e405a37d5e20d0ca50791b0f (diff)
downloadxen-be4d793faa218b6991ff7fd86eacf2c833284919.tar.gz
xen-be4d793faa218b6991ff7fd86eacf2c833284919.tar.bz2
xen-be4d793faa218b6991ff7fd86eacf2c833284919.zip
configure: test(1) uses = not == for string comparison
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>
Diffstat (limited to 'stubdom')
-rwxr-xr-xstubdom/configure4
1 files changed, 2 insertions, 2 deletions
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