summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Klausner <wiz@danbala.tuwien.ac.at>2014-12-01 09:48:41 +0100
committerTim-Philipp Müller <tim@centricular.com>2014-12-12 20:09:55 +0000
commit77829120b965a6cd9439333ef205b80327866385 (patch)
tree18ede6924ebb191b0d0a91336b4d287f9d2f2fd4
parent2b46e1f97549049c6df1c633e80cf98382d0112f (diff)
downloadgstreamer-plugins-bad-77829120b965a6cd9439333ef205b80327866385.tar.gz
configure: Do comparisons in a portable way with = instead of ==
https://bugzilla.gnome.org/show_bug.cgi?id=740953
-rw-r--r--configure.ac6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index 4c30d9da0..8b1c02cba 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1758,9 +1758,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