[oe-commits] Leon Woestenberg : openssl.inc: Deal with HOST_OS= linux-gnu during configure.

git version control git at git.openembedded.org
Sat Sep 26 17:22:42 UTC 2009


Module: openembedded.git
Branch: org.openembedded.dev
Commit: 6215a1952a719420a1461479e5b261792bac8922
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=6215a1952a719420a1461479e5b261792bac8922

Author: Leon Woestenberg <leon at sidebranch.com>
Date:   Sat Sep 26 19:21:09 2009 +0200

openssl.inc: Deal with HOST_OS=linux-gnu during configure.

Signed-off-by: Leon Woestenberg <leon at sidebranch.com>

---

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

diff --git a/recipes/openssl/openssl.inc b/recipes/openssl/openssl.inc
index 9031b7b..4c6e435 100644
--- a/recipes/openssl/openssl.inc
+++ b/recipes/openssl/openssl.inc
@@ -6,7 +6,7 @@ SECTION = "libs/network"
 SRC_URI = "http://www.openssl.org/source/openssl-${PV}.tar.gz"
 S = "${WORKDIR}/openssl-${PV}"
 
-INC_PR = "r10"
+INC_PR = "r11"
 
 AR_append = " r"
 CFLAG = "${@base_conditional('SITEINFO_ENDIANESS', 'le', '-DL_ENDIAN', '-DB_ENDIAN', d)} \
@@ -33,8 +33,9 @@ do_configure () {
 	os=${HOST_OS}
 	if [ "x$os" = "xlinux-uclibc" ]; then
 		os=linux
-	fi
-	if [ "x$os" = "xlinux-uclibceabi" ]; then
+	elif [ "x$os" = "xlinux-uclibceabi" ]; then
+		os=linux
+	elif [ "x$os" = "xlinux-gnu" ]; then
 		os=linux
 	fi
 	target="$os-${HOST_ARCH}"





More information about the Openembedded-commits mailing list