summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2016-10-24 10:30:05 +0300
committerSebastian Dröge <sebastian@centricular.com>2016-10-24 10:30:05 +0300
commite64c140d1ca51ecfbdc18fa410ab74d9e37d398c (patch)
tree2cc14e771fc703e0364b44d573a332fef2469bd5
parent41dc9038241f21e6f8c54db452d52160dfbbd626 (diff)
downloadgst-libav-e64c140d1ca51ecfbdc18fa410ab74d9e37d398c.tar.gz
configure: Fix shell syntax error
Assignments must not have spaces around the '='
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
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)