[oe-commits] Andreas Oberritter : native.bbclass: fix sh equality operator

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


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

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

native.bbclass: fix sh equality operator

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

---

 classes/native.bbclass |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/classes/native.bbclass b/classes/native.bbclass
index 2e52bfc..2356581 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





More information about the Openembedded-commits mailing list