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

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


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

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

xqt: fix sh equality operator

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

---

 recipes/xqt/xqt_0.0.9.bb |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/recipes/xqt/xqt_0.0.9.bb b/recipes/xqt/xqt_0.0.9.bb
index a6f8b67..df3308e 100644
--- a/recipes/xqt/xqt_0.0.9.bb
+++ b/recipes/xqt/xqt_0.0.9.bb
@@ -53,7 +53,7 @@ do_configure() {
 	echo "#define BuildLBX YES" >> config/cf/host.def
 
 	# change standard defines
-	if [ ${TARGET_ARCH} == "arm" ]; then
+	if [ ${TARGET_ARCH} = "arm" ]; then
 		echo "#define StandardDefines -Dlinux -D__arm__ -D_POSIX_SOURCE -D_BSD_SOURCE -D_GNU_SOURCE" >> config/cf/host.def
 		echo "#define Arm32Architecture" >> config/cf/host.def
 	fi





More information about the Openembedded-commits mailing list