From 34e6a15bc8bdf4189b7fdfe5e85f9370d2c4b97c Mon Sep 17 00:00:00 2001 From: Andreas Oberritter Date: Tue, 26 Oct 2010 15:39:33 +0000 Subject: native.bbclass: fix sh equality operator Signed-off-by: Andreas Oberritter Acked-by: Michael Smith --- classes/native.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'classes') 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 -- cgit 1.2.3-korg