configure: Use = instead of == in shell scripts for equality checks
authorSebastian Dröge <sebastian.droege@collabora.co.uk>
Sat, 15 May 2010 19:15:02 +0000 (21:15 +0200)
committerSebastian Dröge <sebastian.droege@collabora.co.uk>
Sat, 15 May 2010 19:15:48 +0000 (21:15 +0200)
configure.ac

index 241cb08..0123003 100644 (file)
@@ -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