From 4c2434271cfc41e910969266ced9e5f06ee0c732 Mon Sep 17 00:00:00 2001 From: Martin Jansa Date: Tue, 25 Dec 2012 19:43:59 +0100 Subject: [PATCH] xf86-video-omap: skip package if opengl isn't in DISTRO_FEATURES Signed-off-by: Martin Jansa Signed-off-by: Saul Wold --- meta/recipes-graphics/xorg-driver/xf86-video-omap_git.bb | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/meta/recipes-graphics/xorg-driver/xf86-video-omap_git.bb b/meta/recipes-graphics/xorg-driver/xf86-video-omap_git.bb index dea8ca28a0..f74419f94f 100644 --- a/meta/recipes-graphics/xorg-driver/xf86-video-omap_git.bb +++ b/meta/recipes-graphics/xorg-driver/xf86-video-omap_git.bb @@ -40,3 +40,9 @@ CFLAGS += " -I${STAGING_INCDIR}/xorg " do_compile_prepend_armv7a () { sed -i -e s:fb1:fb2:g ${S}/src/omap_xv.c } + +python () { + if not oe.utils.contains ('DISTRO_FEATURES', 'opengl', True, False, d): + raise bb.parse.SkipPackage("'opengl' not in DISTRO_FEATURES") +} + -- 2.40.1