[oe-commits] Andreas Oberritter : openssl: fix sh equality operator

git version control git at git.openembedded.org
Sun Nov 14 23:43:36 UTC 2010


Module: openembedded.git
Branch: master
Commit: f45ac3bd6fe2e53e64ccfbb55814b70d27929e00
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=f45ac3bd6fe2e53e64ccfbb55814b70d27929e00

Author: Andreas Oberritter <obi at opendreambox.org>
Date:   Tue Oct 26 15:43:15 2010 +0000

openssl: fix sh equality operator

Signed-off-by: Andreas Oberritter <obi at opendreambox.org>
Acked-by: Michael Smith <msmith at cbnco.com>

---

 recipes/openssl/openssl.inc |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/recipes/openssl/openssl.inc b/recipes/openssl/openssl.inc
index 22cd125..1ef5f0f 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





More information about the Openembedded-commits mailing list