libc-client: remove extra "openssl" from the include path
authorDenys Dmytriyenko <denis@denix.org>
Wed, 14 Jul 2010 19:53:39 +0000 (15:53 -0400)
committerDenys Dmytriyenko <denis@denix.org>
Wed, 14 Jul 2010 20:01:44 +0000 (16:01 -0400)
Since normally OpenSSL headers are already included from "openssl"
directory, don't add it to the path again, which breaks the build
with external toolchains. Thanks to Pierluigi Passaro for suggesting
the fix:
http://e2e.ti.com/support/embedded/f/354/p/53964/198615.aspx

Signed-off-by: Denys Dmytriyenko <denis@denix.org>
recipes/libc-client/libc-client_2007b.bb

index ffe9561..dbcda08 100644 (file)
@@ -14,7 +14,7 @@ EXTRA_OEMAKE = "CC='${CC}'"
 HEADERS = "src/c-client/*.h src/osdep/unix/*.h c-client/auths.c c-client/linkage.c c-client/linkage.h c-client/osdep.h"
 
 do_compile() {
-       echo "SSLINCLUDE=${STAGING_INCDIR}/openssl SSLLIB=${STAGING_LIBDIR}" > ${S}/SPECIALS
+       echo "SSLINCLUDE=${STAGING_INCDIR} SSLLIB=${STAGING_LIBDIR}" > ${S}/SPECIALS
        oe_runmake lnp
 }