comskip: link against libdl

The static ffmpegx requires this due to omx:
libavcodec/omx.c:93: error: undefined reference to 'dlsym'
This commit is contained in:
Andre Heider 2020-02-11 07:45:45 +01:00
parent 1389aefd48
commit f543965c6c

View File

@ -16,5 +16,5 @@ PKG_BUILD_FLAGS="-sysroot"
pre_configure_target() {
# pass ffmpegx to build
CFLAGS+=" -I$(get_install_dir ffmpegx)/usr/local/include"
LDFLAGS+=" -L$(get_install_dir ffmpegx)/usr/local/lib"
LDFLAGS+=" -L$(get_install_dir ffmpegx)/usr/local/lib -ldl"
}