[oe-commits] Andreas Oberritter : pulseaudio: fix sh equality operator

git version control git at git.openembedded.org
Sun Nov 14 23:43:38 UTC 2010


Module: openembedded.git
Branch: master
Commit: 3041d31eb60de0d5db19685954b08496be5ab29f
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=3041d31eb60de0d5db19685954b08496be5ab29f

Author: Andreas Oberritter <obi at opendreambox.org>
Date:   Tue Oct 26 15:43:20 2010 +0000

pulseaudio: fix sh equality operator

Signed-off-by: Andreas Oberritter <obi at opendreambox.org>
Acked-by: Michael Smith <msmith at cbnco.com>

---

 recipes/pulseaudio/pulseaudio-meta_0.9.10.bb |    2 +-
 recipes/pulseaudio/pulseaudio.inc            |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes/pulseaudio/pulseaudio-meta_0.9.10.bb b/recipes/pulseaudio/pulseaudio-meta_0.9.10.bb
index d97d46d..378cb2b 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 6f42d40..85048f2 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
 }





More information about the Openembedded-commits mailing list