aboutsummaryrefslogtreecommitdiffstats
path: root/classes
diff options
context:
space:
mode:
authorAndreas Oberritter <obi@opendreambox.org>2010-10-26 15:39:33 +0000
committerMichael Smith <msmith@cbnco.com>2010-11-14 18:36:49 -0500
commit34e6a15bc8bdf4189b7fdfe5e85f9370d2c4b97c (patch)
tree9073ec765f2e2b0b1c0b5d14f6fa2a0469a1b9e5 /classes
parent2b7c6e17b263f6c45d104100ce165199581b37aa (diff)
downloadopenembedded-34e6a15bc8bdf4189b7fdfe5e85f9370d2c4b97c.tar.gz
native.bbclass: fix sh equality operator
Signed-off-by: Andreas Oberritter <obi@opendreambox.org> Acked-by: Michael Smith <msmith@cbnco.com>
Diffstat (limited to 'classes')
-rw-r--r--classes/native.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/native.bbclass b/classes/native.bbclass
index 2e52bfcb24..23565811ee 100644
--- a/classes/native.bbclass
+++ b/classes/native.bbclass
@@ -73,7 +73,7 @@ PKG_CONFIG_DIR = "${libdir}/pkgconfig"
do_stage_native () {
# If autotools is active, use the autotools staging function, else
# use our "make install" equivalent
- if [ "${AUTOTOOLS_NATIVE_STAGE_INSTALL}" == "1" ]
+ if [ "${AUTOTOOLS_NATIVE_STAGE_INSTALL}" = "1" ]
then
autotools_stage_all
else