aboutsummaryrefslogtreecommitdiffstats
path: root/tools/configure
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 /tools/configure
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 'tools/configure')
-rwxr-xr-xtools/configure22
1 files changed, 11 insertions, 11 deletions
diff --git a/tools/configure b/tools/configure
index 7b8cef8e2f..aac7f87ff0 100755
--- a/tools/configure
+++ b/tools/configure
@@ -4477,7 +4477,7 @@ $as_echo "no" >&6; }
fi
-if test x"${PERL}" == x"no"
+if test x"${PERL}" = x"no"
then
as_fn_error $? "Unable to find perl, please install perl" "$LINENO" 5
fi
@@ -4524,7 +4524,7 @@ $as_echo "no" >&6; }
fi
-if test x"${CURL}" == x"no"
+if test x"${CURL}" = x"no"
then
as_fn_error $? "Unable to find curl-config, please install curl-config" "$LINENO" 5
fi
@@ -4569,7 +4569,7 @@ $as_echo "no" >&6; }
fi
-if test x"${XML}" == x"no"
+if test x"${XML}" = x"no"
then
as_fn_error $? "Unable to find xml2-config, please install xml2-config" "$LINENO" 5
fi
@@ -5837,7 +5837,7 @@ $as_echo "no" >&6; }
fi
-if test x"${BASH}" == x"no"
+if test x"${BASH}" = x"no"
then
as_fn_error $? "Unable to find bash, please install bash" "$LINENO" 5
fi
@@ -5892,7 +5892,7 @@ $as_echo "no" >&6; }
fi
-if test x"${PYTHONPATH}" == x"no"
+if test x"${PYTHONPATH}" = x"no"
then
as_fn_error $? "Unable to find $PYTHON, please install $PYTHON" "$LINENO" 5
fi
@@ -6355,7 +6355,7 @@ $as_echo "no" >&6; }
fi
-if test x"$pyconfig" == x"no"; then :
+if test x"$pyconfig" = x"no"; then :
CPPFLAGS="$CFLAGS `$PYTHON -c 'import distutils.sysconfig; \
print "-I" + distutils.sysconfig.get_config_var("INCLUDEPY")'`"
@@ -6484,7 +6484,7 @@ $as_echo "no" >&6; }
fi
-if test x"${XGETTEXT}" == x"no"
+if test x"${XGETTEXT}" = x"no"
then
as_fn_error $? "Unable to find xgettext, please install xgettext" "$LINENO" 5
fi
@@ -6531,7 +6531,7 @@ $as_echo "no" >&6; }
fi
-if test x"${AS86}" == x"no"
+if test x"${AS86}" = x"no"
then
as_fn_error $? "Unable to find as86, please install as86" "$LINENO" 5
fi
@@ -6576,7 +6576,7 @@ $as_echo "no" >&6; }
fi
-if test x"${LD86}" == x"no"
+if test x"${LD86}" = x"no"
then
as_fn_error $? "Unable to find ld86, please install ld86" "$LINENO" 5
fi
@@ -6621,7 +6621,7 @@ $as_echo "no" >&6; }
fi
-if test x"${BCC}" == x"no"
+if test x"${BCC}" = x"no"
then
as_fn_error $? "Unable to find bcc, please install bcc" "$LINENO" 5
fi
@@ -6666,7 +6666,7 @@ $as_echo "no" >&6; }
fi
-if test x"${IASL}" == x"no"
+if test x"${IASL}" = x"no"
then
as_fn_error $? "Unable to find iasl, please install iasl" "$LINENO" 5
fi