summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian.droege@collabora.co.uk>2010-05-15 21:15:02 +0200
committerSebastian Dröge <sebastian.droege@collabora.co.uk>2010-05-15 21:15:48 +0200
commit68cf261e7152223f7b27bc4d57e9c8b0d672b778 (patch)
tree279c2d31853ddbe622e9d087f65f640f04364755
parent77ec5627778a0bbe4df9969885152e18f04b6048 (diff)
configure: Use = instead of == in shell scripts for equality checks
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 241cb08a1..0123003fc 100644
--- a/configure.ac
+++ b/configure.ac
@@ -690,11 +690,11 @@ AG_GST_CHECK_FEATURE(LIBVISUAL, [libvisual visualization library], libvisual, [
if test $HAVE_LIBVISUAL = no
then
AG_GST_PKG_CHECK_MODULES(LIBVISUAL, libvisual = 0.2.0)
- if test x$HAVE_LIBVISUAL == xyes; then
+ if test x$HAVE_LIBVISUAL = xyes; then
LIBVIS_PLUGINSDIR="`$PKG_CONFIG --variable=pluginsbasedir libvisual-0.2`"
fi
else
- if test x$HAVE_LIBVISUAL == xyes; then
+ if test x$HAVE_LIBVISUAL = xyes; then
LIBVIS_PLUGINSDIR="`$PKG_CONFIG --variable=pluginsbasedir libvisual-0.4`"
fi
fi