diff options
-rw-r--r-- | meta/recipes-core/meta/buildtools-tarball.bb | 1 | ||||
-rw-r--r-- | meta/recipes-extended/wget/wget.inc | 4 | ||||
-rw-r--r-- | meta/recipes-support/gnutls/gnutls.inc | 2 | ||||
-rw-r--r-- | meta/recipes-support/nettle/nettle_2.7.1.bb | 2 |
4 files changed, 7 insertions, 2 deletions
diff --git a/meta/recipes-core/meta/buildtools-tarball.bb b/meta/recipes-core/meta/buildtools-tarball.bb index 62e1e0bbef..c54d9e8699 100644 --- a/meta/recipes-core/meta/buildtools-tarball.bb +++ b/meta/recipes-core/meta/buildtools-tarball.bb @@ -41,6 +41,7 @@ TOOLCHAIN_HOST_TASK ?= "\ nativesdk-git \ nativesdk-pigz \ nativesdk-make \ + nativesdk-wget \ " TOOLCHAIN_OUTPUTNAME ?= "${SDK_NAME}-buildtools-nativesdk-standalone-${DISTRO_VERSION}" diff --git a/meta/recipes-extended/wget/wget.inc b/meta/recipes-extended/wget/wget.inc index 642d502a50..a8ceb0e745 100644 --- a/meta/recipes-extended/wget/wget.inc +++ b/meta/recipes-extended/wget/wget.inc @@ -4,6 +4,7 @@ SECTION = "console/network" LICENSE = "GPLv3" LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504" DEPENDS = "gnutls zlib libpcre" +DEPENDS_class-nativesdk = "nativesdk-gnutls nativesdk-zlib nativesdk-libpcre" INC_PR = "r16" @@ -13,6 +14,9 @@ EXTRA_OECONF = "--enable-ipv6 --with-ssl=gnutls --disable-rpath --disable-iri \ ac_cv_header_uuid_uuid_h=no" ALTERNATIVE_${PN} = "wget" +ALTERNATIVE_${PN}_class-nativesdk = "" ALTERNATIVE_PRIORITY = "100" RRECOMMENDS_${PN} += "ca-certificates" + +BBCLASSEXTEND += "nativesdk" diff --git a/meta/recipes-support/gnutls/gnutls.inc b/meta/recipes-support/gnutls/gnutls.inc index d89b764aae..27aba26943 100644 --- a/meta/recipes-support/gnutls/gnutls.inc +++ b/meta/recipes-support/gnutls/gnutls.inc @@ -43,4 +43,4 @@ FILES_${PN}-xx = "${libdir}/libgnutlsxx.so.*" LDFLAGS_append_libc-uclibc += " -pthread" -BBCLASSEXTEND = "native" +BBCLASSEXTEND = "native nativesdk" diff --git a/meta/recipes-support/nettle/nettle_2.7.1.bb b/meta/recipes-support/nettle/nettle_2.7.1.bb index 8aa5351896..f53afcc5d4 100644 --- a/meta/recipes-support/nettle/nettle_2.7.1.bb +++ b/meta/recipes-support/nettle/nettle_2.7.1.bb @@ -23,4 +23,4 @@ do_configure_prepend() { inherit autotools -BBCLASSEXTEND = "native" +BBCLASSEXTEND = "native nativesdk" |