pulse: fix Bashism in string test

(From OE-Core rev: 342daf26eaf0d885278b06b8d820db238cbf4d61)

Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Saul Wold 2012-11-13 21:32:51 -08:00 committed by Richard Purdie
parent 4d019c038c
commit 374960bd8c
2 changed files with 2 additions and 2 deletions

View File

@ -53,7 +53,7 @@ do_install_append() {
install -d ${D}${sysconfdir}/default/volatiles
install -m 0644 ${WORKDIR}/volatiles.04_pulse ${D}${sysconfdir}/default/volatiles/volatiles.04_pulse
if [ "x${TARGET_PFPU}" == "xsoft" ] ; then
if [ "x${TARGET_PFPU}" = "xsoft" ] ; then
sed -i -e s:\;\ resample-method\ =\ sinc-fastest:resample-method\ =\ trivial: ${D}${sysconfdir}/pulse/daemon.conf
fi
}

View File

@ -1,6 +1,6 @@
require pulseaudio.inc
PR = "r11"
PR = "r12"
DEPENDS += "libjson gdbm speex libxml-parser-perl-native"