diff options
author | Stephen Lawrence <stephen.lawrence@renesas.com> | 2015-10-12 17:31:46 +0100 |
---|---|---|
committer | Stephen Lawrence <stephen.lawrence@renesas.com> | 2015-10-12 18:35:24 +0100 |
commit | 77ec9acc47d63a4abcf06f88ab8d3cab3d20754e (patch) | |
tree | b48b9f42f1db9c01478a1432cef8d3ecf299a6fc /meta-rcar-gen2/recipes-multimedia/gstreamer/gstreamer1.0-omx_1.0.0.bbappend | |
parent | 261feee63064cce1c3ca2c2a397269757dfb7ced (diff) |
multimedia: gstreamer1.0-* fix configure for out of tree build on git recipes
Integrate upstream Poky meta fix 6ede9224f82a [1] to the Poky Gst .bb recipes
into the R-Car .bbappends.This fixes a do_config build error when building
with multimedia acceleration enabled.
Thank you to Tadao Tanikawa and his work on this within AGL:
https://gerrit.automotivelinux.org/gerrit/#/c/4061/1
[1] http://git.yoctoproject.org/cgit/cgit.cgi/poky/commit/meta/recipes-multimedia/gstreamer?h=dizzy&id=6ede9224f82a37dc1cfb48837c40d28996892652
Diffstat (limited to 'meta-rcar-gen2/recipes-multimedia/gstreamer/gstreamer1.0-omx_1.0.0.bbappend')
-rw-r--r-- | meta-rcar-gen2/recipes-multimedia/gstreamer/gstreamer1.0-omx_1.0.0.bbappend | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/meta-rcar-gen2/recipes-multimedia/gstreamer/gstreamer1.0-omx_1.0.0.bbappend b/meta-rcar-gen2/recipes-multimedia/gstreamer/gstreamer1.0-omx_1.0.0.bbappend index 8a7128e..95706e5 100644 --- a/meta-rcar-gen2/recipes-multimedia/gstreamer/gstreamer1.0-omx_1.0.0.bbappend +++ b/meta-rcar-gen2/recipes-multimedia/gstreamer/gstreamer1.0-omx_1.0.0.bbappend @@ -7,9 +7,10 @@ LIC_FILES_CHKSUM_remove_rcar-gen2 = " file://omx/gstomx.h;beginline=1;endline=21 LIC_FILES_CHKSUM_append_rcar-gen2 = " file://omx/gstomx.h;beginline=1;endline=22;md5=17e5f2943dace9e5cde4a8587a31e8f9" S = "${WORKDIR}/git" -do_configure() { - ./autogen.sh --noconfigure - oe_runconf +do_configure_prepend() { + cd ${S} + ./autogen.sh --noconfigure + cd ${B} } DEPENDS_append_rcar-gen2 = " omx-user-module mmngrbuf-user-module" |