diff options
author | Andre McCurdy <armccurdy@gmail.com> | 2018-07-17 11:06:57 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-07-26 13:16:31 +0100 |
commit | a1cda48761f70b5989bb8b9c91d71c0b3a03466e (patch) | |
tree | ddbf2978bd295a9ae15750e358fa58f98a2910f0 | |
parent | 57414f4a1c549e6faaa110e6e95ff601b05b7361 (diff) | |
download | openembedded-core-a1cda48761f70b5989bb8b9c91d71c0b3a03466e.tar.gz openembedded-core-a1cda48761f70b5989bb8b9c91d71c0b3a03466e.tar.bz2 openembedded-core-a1cda48761f70b5989bb8b9c91d71c0b3a03466e.zip |
curl: disable C source code generator
The --libcurl command line option causes curl to generate C source
code which, when compiled and linked with libcurl, creates a binary
which behaves in the same way as curl when run with the other options
passed on the curl command line.
https://curl.haxx.se/docs/manpage.html#--libcurl
It's a development tool and not generally useful on the target,
especially if the target doesn't contain a toolchain etc.
Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
-rw-r--r-- | meta/recipes-support/curl/curl_7.61.0.bb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/recipes-support/curl/curl_7.61.0.bb b/meta/recipes-support/curl/curl_7.61.0.bb index 03d627e8bb..cc983fd4a6 100644 --- a/meta/recipes-support/curl/curl_7.61.0.bb +++ b/meta/recipes-support/curl/curl_7.61.0.bb @@ -49,6 +49,7 @@ PACKAGECONFIG[verbose] = "--enable-verbose,--disable-verbose" PACKAGECONFIG[zlib] = "--with-zlib=${STAGING_LIBDIR}/../,--without-zlib,zlib" EXTRA_OECONF = " \ + --disable-libcurl-option \ --disable-ntlm-wb \ --enable-crypto-auth \ --with-ca-bundle=${sysconfdir}/ssl/certs/ca-certificates.crt \ |