aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/openssl
diff options
context:
space:
mode:
authorAndreas Oberritter <obi@opendreambox.org>2010-10-26 15:43:15 +0000
committerMichael Smith <msmith@cbnco.com>2010-11-14 18:36:54 -0500
commitf45ac3bd6fe2e53e64ccfbb55814b70d27929e00 (patch)
tree494c062a47b8550f68f90e0513dc00d1b8e4a109 /recipes/openssl
parent0cbc4ff8e16f2672bd4b276e3826d011e172ba9d (diff)
downloadopenembedded-f45ac3bd6fe2e53e64ccfbb55814b70d27929e00.tar.gz
openssl: fix sh equality operator
Signed-off-by: Andreas Oberritter <obi@opendreambox.org> Acked-by: Michael Smith <msmith@cbnco.com>
Diffstat (limited to 'recipes/openssl')
-rw-r--r--recipes/openssl/openssl.inc2
1 files changed, 1 insertions, 1 deletions
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