* [meta-intel][danny][PATCH V2] mesa-dri_8.0.4.bbappend: Remove tabs from python code
@ 2012-11-21 20:36 Khem Raj
2012-11-22 6:26 ` Tom Zanussi
0 siblings, 1 reply; 2+ messages in thread
From: Khem Raj @ 2012-11-21 20:36 UTC (permalink / raw)
To: yocto
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 <code>:
AttributeError: 'NoneType' object has no attribute 'split'
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
.../recipes-graphics/mesa/mesa-dri_8.0.4.bbappend | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
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 6bfa968..b92831d 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:
--
1.7.9.5
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [meta-intel][danny][PATCH V2] mesa-dri_8.0.4.bbappend: Remove tabs from python code
2012-11-21 20:36 [meta-intel][danny][PATCH V2] mesa-dri_8.0.4.bbappend: Remove tabs from python code Khem Raj
@ 2012-11-22 6:26 ` Tom Zanussi
0 siblings, 0 replies; 2+ messages in thread
From: Tom Zanussi @ 2012-11-22 6:26 UTC (permalink / raw)
To: Khem Raj; +Cc: yocto
On Wed, 2012-11-21 at 12:36 -0800, Khem Raj wrote:
> 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 <code>:
> AttributeError: 'NoneType' object has no attribute 'split'
>
> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Pulled into meta-intel/master and meta-intel/danny-next.
Thanks,
Tom
> ---
> .../recipes-graphics/mesa/mesa-dri_8.0.4.bbappend | 8 ++++----
> 1 file changed, 4 insertions(+), 4 deletions(-)
>
> 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 6bfa968..b92831d 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:
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-11-22 6:27 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-11-21 20:36 [meta-intel][danny][PATCH V2] mesa-dri_8.0.4.bbappend: Remove tabs from python code Khem Raj
2012-11-22 6:26 ` Tom Zanussi
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.