mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 07:47:17 +00:00
configure: Use = instead of == in shell scripts for equality checks
This commit is contained in:
parent
77ec562777
commit
68cf261e71
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue