From 655e6926bfbff216204fed2c33f0da2aeb89a942 Mon Sep 17 00:00:00 2001 From: Thomas Klausner Date: Mon, 1 Dec 2014 09:48:41 +0100 Subject: [PATCH] configure: Do comparisons in a portable way with = instead of == https://bugzilla.gnome.org/show_bug.cgi?id=740953 --- configure.ac | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index 59381eec56..db1b723598 100644 --- a/configure.ac +++ b/configure.ac @@ -1750,9 +1750,9 @@ AG_GST_CHECK_FEATURE(UVCH264, [UVC H264], uvch264, [ AC_DEFINE([HAVE_LIBUSB], 1, [Define if libusb 1.x is installed]) HAVE_LIBUSB="yes" ], [HAVE_LIBUSB="no"]) - if test "x$HAVE_UVCVIDEO_H" == "xyes" && \ - test "x$HAVE_GUDEV" == "xyes" && \ - test "x$HAVE_LIBUSB" == "xyes"; then + if test "x$HAVE_UVCVIDEO_H" = "xyes" && \ + test "x$HAVE_GUDEV" = "xyes" && \ + test "x$HAVE_LIBUSB" = "xyes"; then HAVE_UVCH264=yes else HAVE_UVCH264=no