diff options
author | Awais Belal <awais_belal@mentor.com> | 2014-12-16 15:46:40 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-12-19 17:54:12 +0000 |
commit | f4a26b72377380e60d1e7058ba40aaf49b6316e5 (patch) | |
tree | 453fa9b5f25a88ea9764a3f00bcb994728b219ca /meta/recipes-multimedia/gstreamer/gstreamer1.0-omx_git.bb | |
parent | fed354d79da865ee1017aa932449f329e4b11dd1 (diff) | |
download | openembedded-core-f4a26b72377380e60d1e7058ba40aaf49b6316e5.tar.gz openembedded-core-f4a26b72377380e60d1e7058ba40aaf49b6316e5.tar.bz2 openembedded-core-f4a26b72377380e60d1e7058ba40aaf49b6316e5.zip |
gstreamer1.0-* fix configure for out of tree build on git recipes
The autogen.sh script lies in the srcdir ($S) and is required to be run on git
based checkouts of gstreamer packages in order to generate initial
makefiles. So, we fix this by cd'ing to the specific dir, run the required
script and then come back to our initial dir which is builddir ($B).
Additionally rather than overriding the whole do_configure step we only _prepend
to make it clear what we are doing here.
Signed-off-by: Awais Belal <awais_belal@mentor.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/recipes-multimedia/gstreamer/gstreamer1.0-omx_git.bb')
-rw-r--r-- | meta/recipes-multimedia/gstreamer/gstreamer1.0-omx_git.bb | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-omx_git.bb b/meta/recipes-multimedia/gstreamer/gstreamer1.0-omx_git.bb index a390205621..931a7fcc96 100644 --- a/meta/recipes-multimedia/gstreamer/gstreamer1.0-omx_git.bb +++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-omx_git.bb @@ -13,8 +13,9 @@ S = "${WORKDIR}/git" SRCREV = "a2db76b048db278ef0aa798e106b7594264e06c0" -do_configure() { +do_configure_prepend() { + cd ${S} ./autogen.sh --noconfigure - oe_runconf + cd ${B} } |