native.bbclass: fix sh equality operator
authorAndreas Oberritter <obi@opendreambox.org>
Tue, 26 Oct 2010 15:39:33 +0000 (15:39 +0000)
committerMichael Smith <msmith@cbnco.com>
Sun, 14 Nov 2010 23:36:49 +0000 (18:36 -0500)
Signed-off-by: Andreas Oberritter <obi@opendreambox.org>
Acked-by: Michael Smith <msmith@cbnco.com>
classes/native.bbclass

index 2e52bfc..2356581 100644 (file)
@@ -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