aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Oberritter <obi@opendreambox.org>2010-10-26 15:43:47 +0000
committerMichael Smith <msmith@cbnco.com>2010-11-14 18:36:58 -0500
commitdae51c8dd4fa9c89872afe0595b525cbb8704bdf (patch)
treeb912038a826908768d257899b8bdd64ce4cedd87
parent10de8956785ed8c87a9b0a556ef0b8d2661d93a5 (diff)
downloadopenembedded-dae51c8dd4fa9c89872afe0595b525cbb8704bdf.tar.gz
xqt2: fix sh equality operator
Signed-off-by: Andreas Oberritter <obi@opendreambox.org> Acked-by: Michael Smith <msmith@cbnco.com>
-rw-r--r--recipes/xqt2/xqt2_20060509.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes/xqt2/xqt2_20060509.bb b/recipes/xqt2/xqt2_20060509.bb
index 4492bc75a8..034d756d28 100644
--- a/recipes/xqt2/xqt2_20060509.bb
+++ b/recipes/xqt2/xqt2_20060509.bb
@@ -67,7 +67,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