From: Sebastian Dröge Date: Mon, 24 Oct 2016 07:30:05 +0000 (+0300) Subject: configure: Fix shell syntax error X-Git-Tag: 1.19.3~499^2~318 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e64c140d1ca51ecfbdc18fa410ab74d9e37d398c;p=platform%2Fupstream%2Fgstreamer.git configure: Fix shell syntax error Assignments must not have spaces around the '=' --- diff --git a/configure.ac b/configure.ac index cdfca05..9cba611 100644 --- a/configure.ac +++ b/configure.ac @@ -258,8 +258,8 @@ HAVE_LIBAV_UNINSTALLED=1 AC_ARG_WITH(system-libav, [AC_HELP_STRING([--with-system-libav], [use system Libav libraries])]) -HAVE_LZMA = "no" -HAVE_BZ2 = "no" +HAVE_LZMA="no" +HAVE_BZ2="no" if test "x$with_system_libav" = "xyes"; then PKG_CHECK_MODULES(LIBAV, libavfilter libavformat libavcodec libavutil) PKG_CHECK_MODULES(SWSCALE, libswscale libavutil)