diff options
author | Denys Dmytriyenko <denis@denix.org> | 2010-07-14 15:53:39 -0400 |
---|---|---|
committer | Denys Dmytriyenko <denis@denix.org> | 2010-07-14 16:01:44 -0400 |
commit | c40eea2a6c172b9b9fe4f025ad335d2d09d1158f (patch) | |
tree | f9bfcf4fe9ee2e4eeb0e7cef1801735cf2ba0a54 /recipes/libc-client | |
parent | 350abdb99e27b56aefb0521d2254c4f40e81f3d3 (diff) |
libc-client: remove extra "openssl" from the include path
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>
Diffstat (limited to 'recipes/libc-client')
-rw-r--r-- | recipes/libc-client/libc-client_2007b.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes/libc-client/libc-client_2007b.bb b/recipes/libc-client/libc-client_2007b.bb index ffe9561de5..dbcda085ca 100644 --- a/recipes/libc-client/libc-client_2007b.bb +++ b/recipes/libc-client/libc-client_2007b.bb @@ -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 } |