All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] mesa: fix meson configure fix when 'dri' is excluded from PACKAGECONFIG
@ 2019-10-30  9:32 yann.dirson
  0 siblings, 0 replies; 3+ messages in thread
From: yann.dirson @ 2019-10-30  9:32 UTC (permalink / raw)
  To: openembedded-core; +Cc: Yann Dirson

From: Yann Dirson <yann@blade-group.com>

Signed-off-by: Yann Dirson <yann@blade-group.com>
---
 .../mesa/files/0003-Allow-enable-DRI-without-DRI-drivers.patch  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-graphics/mesa/files/0003-Allow-enable-DRI-without-DRI-drivers.patch b/meta/recipes-graphics/mesa/files/0003-Allow-enable-DRI-without-DRI-drivers.patch
index 3458c19199..346b217585 100644
--- a/meta/recipes-graphics/mesa/files/0003-Allow-enable-DRI-without-DRI-drivers.patch
+++ b/meta/recipes-graphics/mesa/files/0003-Allow-enable-DRI-without-DRI-drivers.patch
@@ -23,7 +23,7 @@ index 0e50bb26c0a..de065c290d6 100644
  with_dri_swrast = dri_drivers.contains('swrast')
  
 -with_dri = dri_drivers.length() != 0 and dri_drivers != ['']
-+with_dri = get_option('dri') or (_drivers.length() != 0 and _drivers != [''])
++with_dri = get_option('dri') or (dri_drivers.length() != 0 and dri_drivers != [''])
  
  gallium_drivers = get_option('gallium-drivers')
  if gallium_drivers.contains('auto')
-- 
2.23.0



^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] mesa: fix meson configure fix when 'dri' is excluded from PACKAGECONFIG
  2019-10-29  9:45 yann.dirson
@ 2019-10-29 14:42 ` Alexander Kanavin
  0 siblings, 0 replies; 3+ messages in thread
From: Alexander Kanavin @ 2019-10-29 14:42 UTC (permalink / raw)
  To: yann.dirson; +Cc: Yann Dirson, OpenEmbedded Devel List

This should be going to the oe-core mailing list.

Alex

On Tue, 29 Oct 2019 at 10:47, <yann.dirson@blade-group.com> wrote:

> From: Yann Dirson <yann@blade-group.com>
>
> Signed-off-by: Yann Dirson <yann@blade-group.com>
> ---
>  .../mesa/files/0003-Allow-enable-DRI-without-DRI-drivers.patch  | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git
> a/meta/recipes-graphics/mesa/files/0003-Allow-enable-DRI-without-DRI-drivers.patch
> b/meta/recipes-graphics/mesa/files/0003-Allow-enable-DRI-without-DRI-drivers.patch
> index 3458c19199..346b217585 100644
> ---
> a/meta/recipes-graphics/mesa/files/0003-Allow-enable-DRI-without-DRI-drivers.patch
> +++
> b/meta/recipes-graphics/mesa/files/0003-Allow-enable-DRI-without-DRI-drivers.patch
> @@ -23,7 +23,7 @@ index 0e50bb26c0a..de065c290d6 100644
>   with_dri_swrast = dri_drivers.contains('swrast')
>
>  -with_dri = dri_drivers.length() != 0 and dri_drivers != ['']
> -+with_dri = get_option('dri') or (_drivers.length() != 0 and _drivers !=
> [''])
> ++with_dri = get_option('dri') or (dri_drivers.length() != 0 and
> dri_drivers != [''])
>
>   gallium_drivers = get_option('gallium-drivers')
>   if gallium_drivers.contains('auto')
> --
> 2.23.0
>
> --
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
>


^ permalink raw reply	[flat|nested] 3+ messages in thread

* [PATCH] mesa: fix meson configure fix when 'dri' is excluded from PACKAGECONFIG
@ 2019-10-29  9:45 yann.dirson
  2019-10-29 14:42 ` Alexander Kanavin
  0 siblings, 1 reply; 3+ messages in thread
From: yann.dirson @ 2019-10-29  9:45 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Yann Dirson

From: Yann Dirson <yann@blade-group.com>

Signed-off-by: Yann Dirson <yann@blade-group.com>
---
 .../mesa/files/0003-Allow-enable-DRI-without-DRI-drivers.patch  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-graphics/mesa/files/0003-Allow-enable-DRI-without-DRI-drivers.patch b/meta/recipes-graphics/mesa/files/0003-Allow-enable-DRI-without-DRI-drivers.patch
index 3458c19199..346b217585 100644
--- a/meta/recipes-graphics/mesa/files/0003-Allow-enable-DRI-without-DRI-drivers.patch
+++ b/meta/recipes-graphics/mesa/files/0003-Allow-enable-DRI-without-DRI-drivers.patch
@@ -23,7 +23,7 @@ index 0e50bb26c0a..de065c290d6 100644
  with_dri_swrast = dri_drivers.contains('swrast')
  
 -with_dri = dri_drivers.length() != 0 and dri_drivers != ['']
-+with_dri = get_option('dri') or (_drivers.length() != 0 and _drivers != [''])
++with_dri = get_option('dri') or (dri_drivers.length() != 0 and dri_drivers != [''])
  
  gallium_drivers = get_option('gallium-drivers')
  if gallium_drivers.contains('auto')
-- 
2.23.0



^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2019-10-30  9:32 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-30  9:32 [PATCH] mesa: fix meson configure fix when 'dri' is excluded from PACKAGECONFIG yann.dirson
  -- strict thread matches above, loose matches on Subject: below --
2019-10-29  9:45 yann.dirson
2019-10-29 14:42 ` Alexander Kanavin

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.