diff options
author | Ross Burton <ross.burton@intel.com> | 2013-04-11 12:14:43 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-04-11 12:20:38 +0100 |
commit | d3762f29b3054b6724b08bc2b6678dfdb5c746fd (patch) | |
tree | 1bcefc6ab8413d26d39a8c1e276d75b5d0c6ae02 /meta/recipes-multimedia/pulseaudio | |
parent | 98c1f5b1eae3162ebcce43011eeccb46bcbf49f1 (diff) | |
download | poky-d3762f29b3054b6724b08bc2b6678dfdb5c746fd.tar.gz |
pulseaudio: remove spurious cd in do_compile_prepend
This prepend was cding to ${S}, which then breaks base_do_compile as it assumes
it's in ${B}. The cd is pointless as all of the operations use absolute paths,
so remove it.
The result of this was that base_do_compile was failing to find the makefiles,
so the compilation happened in do_install.
(From OE-Core rev: ac3a8ce0b672d1488c9074bde1a1d062e0c5fd33)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-multimedia/pulseaudio')
-rw-r--r-- | meta/recipes-multimedia/pulseaudio/pulseaudio_3.0.bb | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/meta/recipes-multimedia/pulseaudio/pulseaudio_3.0.bb b/meta/recipes-multimedia/pulseaudio/pulseaudio_3.0.bb index 71c3c05640..3621452d4c 100644 --- a/meta/recipes-multimedia/pulseaudio/pulseaudio_3.0.bb +++ b/meta/recipes-multimedia/pulseaudio/pulseaudio_3.0.bb | |||
@@ -13,7 +13,6 @@ SRC_URI[md5sum] = "47fd7eca8479c757822bee68a1feef25" | |||
13 | SRC_URI[sha256sum] = "c90bfda29605942d08e3e218ef10e3c660506a06651a616bfbb6a6df8392836d" | 13 | SRC_URI[sha256sum] = "c90bfda29605942d08e3e218ef10e3c660506a06651a616bfbb6a6df8392836d" |
14 | 14 | ||
15 | do_compile_prepend() { | 15 | do_compile_prepend() { |
16 | cd ${S} | ||
17 | mkdir -p ${S}/libltdl | 16 | mkdir -p ${S}/libltdl |
18 | cp ${STAGING_LIBDIR}/libltdl* ${S}/libltdl | 17 | cp ${STAGING_LIBDIR}/libltdl* ${S}/libltdl |
19 | } | 18 | } |