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:35 +0100 |
commit | ae353c229cfe7e82588dc53fbed10c6ba8370d26 (patch) | |
tree | c97c6bc211881899fac626ffc09a23fb1c6d5e2d /meta/recipes-multimedia | |
parent | 8b29120a8cdd92a0429f383f4811f7f84c6c350e (diff) | |
download | poky-ae353c229cfe7e82588dc53fbed10c6ba8370d26.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')
-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 | } |