[oe-commits] [openembedded-core] 28/37: mesa: fix meson configure fix when 'dri' is excluded from PACKAGECONFIG

git at git.openembedded.org git at git.openembedded.org
Mon Nov 4 13:40:23 UTC 2019


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master
in repository openembedded-core.

commit 78efff8741f869647790810a3dd41459b9d9d8a6
Author: Yann Dirson <yann at blade-group.com>
AuthorDate: Wed Oct 30 10:32:15 2019 +0100

    mesa: fix meson configure fix when 'dri' is excluded from PACKAGECONFIG
    
    Signed-off-by: Yann Dirson <yann at blade-group.com>
    Signed-off-by: Ross Burton <ross.burton at intel.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 3458c19..346b217 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')

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list