From: Richard Purdie Date: Sun, 28 Nov 2010 14:10:53 +0000 (+0000) Subject: curl: Fix gnutls option (append ordering was incorrect) X-Git-Tag: 2011-1~3798 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=91ef6ae3fc81cf2558104d3372d62f25880ad906;p=openembedded-core.git curl: Fix gnutls option (append ordering was incorrect) Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-support/curl/curl_7.21.2.bb b/meta/recipes-support/curl/curl_7.21.2.bb index fd1d5ddf75..3208baf12f 100644 --- a/meta/recipes-support/curl/curl_7.21.2.bb +++ b/meta/recipes-support/curl/curl_7.21.2.bb @@ -22,11 +22,12 @@ EXTRA_OECONF = "--with-zlib=${STAGING_LIBDIR}/../ \ --with-random=/dev/urandom \ --without-libidn \ --enable-crypto-auth \ + ${CURLGNUTLS} \ " -EXTRA_OECONF_append = " --with-gnutls=${STAGING_LIBDIR}/../" -EXTRA_OECONF_virtclass-native_append = " --without-gnutls" -EXTRA_OECONF_virtclass-nativesdk_append = " --without-gnutls" +CURLGNUTLS = " --with-gnutls=${STAGING_LIBDIR}/../" +CURLGNUTLS_virtclass-native = "--without-gnutls" +CURLGNUTLS_virtclass-nativesdk = "--without-gnutls" do_configure_prepend() { sed -i s:OPT_GNUTLS/bin:OPT_GNUTLS:g configure.ac