mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-01 03:52:25 +00:00
configure: Fix shell syntax error
Assignments must not have spaces around the '='
This commit is contained in:
parent
41dc903824
commit
e64c140d1c
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue