From d87917772ca9597ddd19c8b743212b8dae434b41 Mon Sep 17 00:00:00 2001 From: Ross Burton Date: Mon, 16 May 2016 13:47:14 +0100 Subject: recipes: use bb.utils.contains instead of base_contains base_contains is simply a compatibility wrapper and may warn in the future, so replace all instances with bb.utils.contains(). Signed-off-by: Ross Burton Signed-off-by: Tom Zanussi --- common/recipes-graphics/xorg-driver/xf86-video-mga_1.6.4.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'common/recipes-graphics') diff --git a/common/recipes-graphics/xorg-driver/xf86-video-mga_1.6.4.bb b/common/recipes-graphics/xorg-driver/xf86-video-mga_1.6.4.bb index 937f1a15..36b75b2c 100644 --- a/common/recipes-graphics/xorg-driver/xf86-video-mga_1.6.4.bb +++ b/common/recipes-graphics/xorg-driver/xf86-video-mga_1.6.4.bb @@ -17,7 +17,7 @@ COMPATIBLE_HOST = '(i.86.*-linux|x86_64.*-linux)' SRC_URI[md5sum] = "cd3db8370caa3e607614ea4e74d4c350" SRC_URI[sha256sum] = "48c6690b6751c76f53de64f8dbeaa9d6c62dbcfe890c768fd87167951247d44f" -PACKAGECONFIG ?= "${@base_contains('DISTRO_FEATURES', 'opengl', 'dri', '', d)}" +PACKAGECONFIG ?= "${@bb.utils.contains('DISTRO_FEATURES', 'opengl', 'dri', '', d)}" PACKAGECONFIG[dri] = "--enable-dri,--disable-dri,drm xf86driproto,xserver-xorg-extension-dri" RDEPENDS_${PN} = "xserver-xorg-module-exa" -- cgit v1.2.3-54-g00ecf