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

index 22cd125..1ef5f0f 100644 (file)
@@ -93,7 +93,7 @@ do_configure () {
        # inject machine-specific flags
        sed -i -e "s|^\(\"$target\",\s*\"[^:]\+\):\([^:]\+\)|\1:${CFLAG}|g" Configure
         useprefix=${prefix}
-        if [ "x$useprefix" == "x" ]; then
+        if [ "x$useprefix" = "x" ]; then
                 useprefix=/
         fi        
        perl ./Configure shared --prefix=$useprefix --openssldir=${libdir}/ssl $target