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 18:07:59 +0000 |
commit | 73388a1846c18414c8c499476257367b2b66ea96 (patch) | |
tree | c37a6983480cae3d1503bb43ef166220c749bfac /meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good_git.bb | |
parent | f9ea9382a755841d750490279d98af372ac5fe87 (diff) | |
download | poky-73388a1846c18414c8c499476257367b2b66ea96.tar.gz |
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.
(From OE-Core rev: f4a26b72377380e60d1e7058ba40aaf49b6316e5)
Signed-off-by: Awais Belal <awais_belal@mentor.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good_git.bb')
-rw-r--r-- | meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good_git.bb | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good_git.bb b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good_git.bb index 8b11b20b1b..2c0e0efe68 100644 --- a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good_git.bb +++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good_git.bb | |||
@@ -10,8 +10,9 @@ S = "${WORKDIR}/git" | |||
10 | 10 | ||
11 | SRCREV = "fd0123800c8c1cf1468c0fa5d592ad0d0d8b4140" | 11 | SRCREV = "fd0123800c8c1cf1468c0fa5d592ad0d0d8b4140" |
12 | 12 | ||
13 | do_configure() { | 13 | do_configure_prepend() { |
14 | cd ${S} | ||
14 | ./autogen.sh --noconfigure | 15 | ./autogen.sh --noconfigure |
15 | oe_runconf | 16 | cd ${B} |
16 | } | 17 | } |
17 | 18 | ||