package/gst-omx: fix gstomx.conf installation for raspberry
authorAugustin Thiercelin <augustin.thiercelin@outlook.com>
Tue, 27 Oct 2020 11:30:54 +0000 (12:30 +0100)
committerYann E. MORIN <yann.morin.1998@free.fr>
Tue, 27 Oct 2020 12:06:20 +0000 (13:06 +0100)
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 <augustin.thiercelin@outlook.com>
Reviewed-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
package/gstreamer1/gst-omx/gst-omx.mk

index cdd0e86b04e3d72c300b3e9701510a6e42856dbd..9e35ff3d040ac1ed96a0df102db169b3805d2b43 100644 (file)
@@ -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