From: Andreas Oberritter Date: Tue, 26 Oct 2010 15:43:20 +0000 (+0000) Subject: pulseaudio: fix sh equality operator X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3041d31eb60de0d5db19685954b08496be5ab29f;p=openembedded.git pulseaudio: fix sh equality operator Signed-off-by: Andreas Oberritter Acked-by: Michael Smith --- diff --git a/recipes/pulseaudio/pulseaudio-meta_0.9.10.bb b/recipes/pulseaudio/pulseaudio-meta_0.9.10.bb index d97d46d63b..378cb2b60b 100644 --- a/recipes/pulseaudio/pulseaudio-meta_0.9.10.bb +++ b/recipes/pulseaudio/pulseaudio-meta_0.9.10.bb @@ -40,7 +40,7 @@ do_install() { install -m 0755 ${WORKDIR}/session ${D}/${sysconfdir}/pulse/session.pulseaudio-meta install -m 0644 ${WORKDIR}/asound.conf ${D}/${sysconfdir}/asound.conf.pulseaudio-meta - 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}/init.d/pulseaudio fi } diff --git a/recipes/pulseaudio/pulseaudio.inc b/recipes/pulseaudio/pulseaudio.inc index 6f42d40388..85048f2485 100644 --- a/recipes/pulseaudio/pulseaudio.inc +++ b/recipes/pulseaudio/pulseaudio.inc @@ -39,7 +39,7 @@ do_install_append() { install -d ${D}${sysconfdir}/default/volatiles install -m 0644 ${WORKDIR}/volatiles.04_pulse ${D}${sysconfdir}/default/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 }