From: Augustin Thiercelin Date: Tue, 27 Oct 2020 11:30:54 +0000 (+0100) Subject: package/gst-omx: fix gstomx.conf installation for raspberry X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a7ee3abf565eaedc70f12f597327ca123445ef21;p=buildroot.git package/gst-omx: fix gstomx.conf installation for raspberry The commit 7e6f4e5 introduces a new bug when building the gst-omx package for the raspberry. GST_OMX_VARIANT variable in gst-omx.mk was shadowed to 'generic' after being set well for raspberry. It results having the gstomx.conf not being installed, and thus having gst-omx installed but none of its features available. Signed-off-by: Augustin Thiercelin Reviewed-by: Peter Seiderer Signed-off-by: Yann E. MORIN --- diff --git a/package/gstreamer1/gst-omx/gst-omx.mk b/package/gstreamer1/gst-omx/gst-omx.mk index cdd0e86b04..9e35ff3d04 100644 --- a/package/gstreamer1/gst-omx/gst-omx.mk +++ b/package/gstreamer1/gst-omx/gst-omx.mk @@ -20,6 +20,7 @@ GST_OMX_CONF_OPTS = \ ifeq ($(BR2_PACKAGE_RPI_USERLAND),y) GST_OMX_VARIANT = rpi GST_OMX_CONF_OPTS += -Dheader_path=$(STAGING_DIR)/usr/include/IL +else GST_OMX_VARIANT = generic endif