configure.ac: fix == in test(1) operator
authorBenjamin Otte <otte@gnome.org>
Sun, 4 Apr 2004 23:38:15 +0000 (23:38 +0000)
committerBenjamin Otte <otte@gnome.org>
Sun, 4 Apr 2004 23:38:15 +0000 (23:38 +0000)
Original commit message from CVS:
reviewed by Benjamin Otte  <otte@gnome.org>
* configure.ac:
fix == in test(1) operator

ChangeLog
configure.ac

index 0ccd6ee032376f448908d902d31f2abdb8b04364..7a0d29a228d478b9553d814965ece7ef63ae3a53 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2004-04-05  Julio M. Merino Vidal  <jmmv@menta.net>
+
+       reviewed by Benjamin Otte  <otte@gnome.org>
+
+       * configure.ac:
+         fix == in test(1) operator
+
 2004-04-05  Julio M. Merino Vidal  <jmmv@menta.net>
 
        reviewed by Benjamin Otte  <otte@gnome.org>
index d3b3b3b546c107ee85d520fc0f23a54f404cbf21..7311bc78896bbdfa9e0b22e886e944d898047ef4 100644 (file)
@@ -600,7 +600,7 @@ translit(dnm, m, l) AM_CONDITIONAL(USE_V4L, true)
 GST_CHECK_FEATURE(V4L, [Video 4 Linux], v4lsrc v4lmjpegsrc v4lmjpegsink, [
   # first check X
   HAVE_V4L="no"
-  if test "$HAVE_X" == "yes"
+  if test "$HAVE_X" = "yes"
   then
     AC_CHECK_DECL(VID_TYPE_MPEG_ENCODER, HAVE_V4L="yes", HAVE_V4L="no", [
 #include <sys/types.h>
@@ -615,7 +615,7 @@ dnl for information about the header/define, see sys/v4l2/gstv4l2element.h
 translit(dnm, m, l) AM_CONDITIONAL(USE_V4L2, true)
 GST_CHECK_FEATURE(V4L2, [Video 4 Linux 2], v4l2src, [
   HAVE_V4L2="no"
-  if test "$HAVE_X" == "yes"
+  if test "$HAVE_X" = "yes"
   then
     AC_MSG_CHECKING([Checking for uptodate v4l2 installation])
     AC_TRY_COMPILE([