From d3f491276519fa30fb2ce9dbdd3dd2591fa27558 Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Wed, 21 Nov 2012 12:36:54 -0800 Subject: mesa-dri_8.0.4.bbappend: Remove tabs from python code check for xserver to be non-empty before using it fixed errors like ERROR: Failed to parse recipe: /b/kraj/yocto/poky/meta/recipes-graphics/mesa/mesa-dri_8.0.4.bb ERROR: Error executing a python function in : AttributeError: 'NoneType' object has no attribute 'split' Signed-off-by: Khem Raj Signed-off-by: Tom Zanussi --- common/recipes-graphics/mesa/mesa-dri_8.0.4.bbappend | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'common/recipes-graphics/mesa/mesa-dri_8.0.4.bbappend') diff --git a/common/recipes-graphics/mesa/mesa-dri_8.0.4.bbappend b/common/recipes-graphics/mesa/mesa-dri_8.0.4.bbappend index 6bfa9686..b92831d3 100644 --- a/common/recipes-graphics/mesa/mesa-dri_8.0.4.bbappend +++ b/common/recipes-graphics/mesa/mesa-dri_8.0.4.bbappend @@ -6,13 +6,13 @@ python __anonymous () { import re xserver = d.getVar('XSERVER', True) - if 'emgd-driver-bin' in xserver.split(' '): + if xserver and 'emgd-driver-bin' in xserver.split(' '): extra_oeconf = d.getVar('EXTRA_OECONF', True).split() - take_out = ["--enable-egl", "--enable-gles1", "--enable-gles2"] - put_in = ["--disable-egl", "--disable-gles1", "--disable-gles2"] + take_out = ["--enable-egl", "--enable-gles1", "--enable-gles2"] + put_in = ["--disable-egl", "--disable-gles1", "--disable-gles2"] pattern = re.compile("--with-egl-platforms") new_extra_oeconf = [ ] - for i in extra_oeconf: + for i in extra_oeconf: if ( i not in take_out ) and ( not pattern.match(i)): new_extra_oeconf.append(i) for i in put_in: -- cgit v1.2.3-54-g00ecf