From 68cf261e7152223f7b27bc4d57e9c8b0d672b778 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Sat, 15 May 2010 21:15:02 +0200 Subject: [PATCH] configure: Use = instead of == in shell scripts for equality checks --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 241cb08a1d..0123003fc8 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