From: Danomi Manchego Date: Sun, 19 Oct 2014 19:33:20 +0000 (-0400) Subject: gst-ffmpeg: add --pkg-config to internal libav configure options X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=15a7140bc55e431590cf47a4f4cc8d793543e343;p=buildroot.git gst-ffmpeg: add --pkg-config to internal libav configure options The internal copy of libav in gst-ffmpeg does not understand the PKG_CONFIG env variable, so it throws a line like this at the end of its configuration: WARNING: .../output/host/usr/bin/i686-pc-linux-gnu-pkg-config not found, library detection may fail. This patch adds the --pkg-config to let libav know where it is. Signed-off-by: Danomi Manchego Tested-by: Luca Ceresoli Reviewed-by: Luca Ceresoli Signed-off-by: Thomas Petazzoni --- diff --git a/package/gstreamer/gst-ffmpeg/gst-ffmpeg.mk b/package/gstreamer/gst-ffmpeg/gst-ffmpeg.mk index 44d3acec60..984b64c0bd 100644 --- a/package/gstreamer/gst-ffmpeg/gst-ffmpeg.mk +++ b/package/gstreamer/gst-ffmpeg/gst-ffmpeg.mk @@ -22,7 +22,8 @@ endif GST_FFMPEG_CONF_EXTRA_OPTS = \ --cross-prefix=$(TARGET_CROSS) \ - --target-os=linux + --target-os=linux \ + --pkg-config='$(PKG_CONFIG_HOST_BINARY)' ifeq ($(BR2_PACKAGE_ZLIB),y) GST_FFMPEG_CONF_EXTRA_OPTS += --enable-zlib