From f45ac3bd6fe2e53e64ccfbb55814b70d27929e00 Mon Sep 17 00:00:00 2001 From: Andreas Oberritter Date: Tue, 26 Oct 2010 15:43:15 +0000 Subject: [PATCH] openssl: fix sh equality operator Signed-off-by: Andreas Oberritter Acked-by: Michael Smith --- recipes/openssl/openssl.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/openssl/openssl.inc b/recipes/openssl/openssl.inc index 22cd125b47..1ef5f0f606 100644 --- a/recipes/openssl/openssl.inc +++ b/recipes/openssl/openssl.inc @@ -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 -- 2.39.5