diff options
author | Stephen Lawrence <stephen.lawrence@renesas.com> | 2017-08-04 14:56:41 +0100 |
---|---|---|
committer | Thuy Tran <thuy.tran.xh@rvc.renesas.com> | 2018-01-30 10:07:59 +0700 |
commit | f8924a55a45b0edbf231be17d518d0f30b9ec454 (patch) | |
tree | b50c5524c76c1fecbc108109a6193aa10f254fce | |
parent | f910a28b27b8e28f7ad97bfaa9503e1a5073a324 (diff) |
rcar-gen3: gstreamer1.0-plugin-vspfilter: Add missing inherit pkgconfig
Pkg-config is called in the do_configure() task. With the introduction
of per recipe sysroot add the missing pkgconfig to the
inherit variable.
Fixes configure task error of the form:
|configure:12146: checking for GLIB
|configure:12214: result: no
|configure:12216: error: in `gstreamer1.0-plugin-vspfilter/1.0.0-r0/build':
|configure:12218: error: The pkg-config script could not be found or is too old. Make sure it
|is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config.
Signed-off-by: Stephen Lawrence <stephen.lawrence@renesas.com>
Signed-off-by: Takamitsu Honda <takamitsu.honda.pv@renesas.com>
-rw-r--r-- | meta-rcar-gen3/recipes-multimedia/gstreamer/gstreamer1.0-plugin-vspfilter_1.0.0.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-rcar-gen3/recipes-multimedia/gstreamer/gstreamer1.0-plugin-vspfilter_1.0.0.bb b/meta-rcar-gen3/recipes-multimedia/gstreamer/gstreamer1.0-plugin-vspfilter_1.0.0.bb index dadfc3d..76dc990 100644 --- a/meta-rcar-gen3/recipes-multimedia/gstreamer/gstreamer1.0-plugin-vspfilter_1.0.0.bb +++ b/meta-rcar-gen3/recipes-multimedia/gstreamer/gstreamer1.0-plugin-vspfilter_1.0.0.bb @@ -3,7 +3,7 @@ SECTION = "multimedia" LICENSE = "GPLv2+" DEPENDS = "gstreamer1.0 gstreamer1.0-plugins-base pkgconfig" LIC_FILES_CHKSUM = "file://COPYING.LIB;md5=4fbd65380cdd255951079008b364516c" -inherit autotools +inherit autotools pkgconfig PN = "gstreamer1.0-plugin-vspfilter" |