From b4bb0f32eb822f8484a8a2b2822b9e6fccc6b664 Mon Sep 17 00:00:00 2001 From: "Anselmo L. S. Melo" Date: Tue, 1 Nov 2016 11:31:14 -0200 Subject: [PATCH] Use bb.utils.contains instead of base_contains base_contains is deprecated. Signed-off-by: Anselmo L. S. Melo --- recipes-modules/libmicrohttpd/libmicrohttpd_0.9.49.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes-modules/libmicrohttpd/libmicrohttpd_0.9.49.bb b/recipes-modules/libmicrohttpd/libmicrohttpd_0.9.49.bb index 7b29065..01c1e21 100644 --- a/recipes-modules/libmicrohttpd/libmicrohttpd_0.9.49.bb +++ b/recipes-modules/libmicrohttpd/libmicrohttpd_0.9.49.bb @@ -16,7 +16,7 @@ EXTRA_OECONF += "--disable-static --with-gnutls=${STAGING_LIBDIR}/../ --disable- PACKAGECONFIG ?= "curl" PACKAGECONFIG_append_class-target = "\ - ${@base_contains('DISTRO_FEATURES', 'largefile', 'largefile', '', d)} \ + ${@bb.utils.contains('DISTRO_FEATURES', 'largefile', 'largefile', '', d)} \ " PACKAGECONFIG[largefile] = "--enable-largefile,--disable-largefile,," PACKAGECONFIG[curl] = "--enable-curl,--disable-curl,curl,"