From a3617f24641962e6732c8369ce9256ae4be5a2a0 Mon Sep 17 00:00:00 2001 From: Derek Straka Date: Sun, 1 May 2016 10:27:45 -0400 Subject: globally replace 'base_contains' calls with 'bb.utils.contains' The 'base_contains' is now deprecated and only kept as a compatibility method. It will be removed in future releases. Signed-off-by: Derek Straka Signed-off-by: Bruce Ashfield --- recipes-extended/images/xen-guest-image-minimal.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'recipes-extended/images') diff --git a/recipes-extended/images/xen-guest-image-minimal.bb b/recipes-extended/images/xen-guest-image-minimal.bb index f13940ce..ab7e92c3 100644 --- a/recipes-extended/images/xen-guest-image-minimal.bb +++ b/recipes-extended/images/xen-guest-image-minimal.bb @@ -7,8 +7,8 @@ IMAGE_INSTALL += " \ ${@bb.utils.contains('MACHINE_FEATURES', 'acpi', 'kernel-module-xen-acpi-processor', '', d)} \ " -IMAGE_INSTALL += "${@base_contains('DISTRO_FEATURES', 'x11', ' xf86-video-fbdev', '', d)}" -IMAGE_INSTALL += "${@base_contains('DISTRO_FEATURES', 'x11', ' xf86-video-vesa', '', d)}" +IMAGE_INSTALL += "${@bb.utils.contains('DISTRO_FEATURES', 'x11', ' xf86-video-fbdev', '', d)}" +IMAGE_INSTALL += "${@bb.utils.contains('DISTRO_FEATURES', 'x11', ' xf86-video-vesa', '', d)}" LICENSE = "MIT" -- cgit v1.2.3-54-g00ecf