summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorThomas Klausner <wiz@danbala.tuwien.ac.at>2014-12-01 09:48:41 +0100
committerSebastian Dröge <sebastian@centricular.com>2014-12-01 09:49:17 +0100
commit655e6926bfbff216204fed2c33f0da2aeb89a942 (patch)
tree83ffb2aec44be0ff8e5d8fe3ceacd9cc782c54f1 /configure.ac
parentdf66909129550aa22c97f981ddf1fdf95c492bee (diff)
downloadgstreamer-plugins-bad-655e6926bfbff216204fed2c33f0da2aeb89a942.tar.gz
configure: Do comparisons in a portable way with = instead of ==
https://bugzilla.gnome.org/show_bug.cgi?id=740953
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index 59381eec5..db1b72359 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