Unified HMI: initial commit
[AGL/meta-agl-devel.git] / meta-uhmi / meta-rvgpu / recipes-graphics / mesa-virtio / files / 0001-Enable-using-python3.patch
1 From b5aedd7844195a3ddae70f02de503636097a8ddb Mon Sep 17 00:00:00 2001
2 From: Seimizu Joukan <joukan.seimizu@jp.panasonic.com>
3 Date: Fri, 20 Aug 2021 15:56:37 +0900
4 Subject: [PATCH] Enable using python3
5
6 Python2 is not supported anymore since Yocto dunfell, 
7 but mesa-18.2.0 depends on python2.
8
9 Upstream-Status: Inappropriate [embedded specific]
10 ---
11  configure.ac | 2 +-
12  1 file changed, 1 insertion(+), 1 deletion(-)
13
14 diff --git a/configure.ac b/configure.ac
15 index 42e1582..8c591ce 100644
16 --- a/configure.ac
17 +++ b/configure.ac
18 @@ -124,7 +124,7 @@ AC_PROG_GREP
19  AC_PROG_NM
20  AM_PROG_AS
21  AX_CHECK_GNU_MAKE
22 -AC_CHECK_PROGS([PYTHON2], [python2.7 python2 python])
23 +AC_CHECK_PROGS([PYTHON2], [python3 python2 python])
24  AC_PROG_SED
25  AC_PROG_MKDIR_P
26  
27 -- 
28 2.17.1
29