diff options
author | Otavio Salvador <otavio@ossystems.com.br> | 2018-06-06 10:45:48 -0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-06-18 11:07:58 +0100 |
commit | b77d478b3d41a0c2aced9f704a9b1a01f9c8e0ed (patch) | |
tree | e203ec50c739fd85472c4debff2757f2d5294c9f /meta/recipes-graphics/mesa/files/vulkan-mkdir.patch | |
parent | 559f4951e2ec786a05e39a685299d4913a28056e (diff) | |
download | poky-b77d478b3d41a0c2aced9f704a9b1a01f9c8e0ed.tar.gz |
mesa: Update 18.0.2 -> 18.1.1
This includes all bugfixes of 18.0.x series and major new
features. For list of changes check:
https://www.mesa3d.org/relnotes/18.1.0.html
https://www.mesa3d.org/relnotes/18.1.1.html
(From OE-Core rev: 8803a6e31a4b64eb9d3c146567375c98972074df)
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/mesa/files/vulkan-mkdir.patch')
-rw-r--r-- | meta/recipes-graphics/mesa/files/vulkan-mkdir.patch | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/meta/recipes-graphics/mesa/files/vulkan-mkdir.patch b/meta/recipes-graphics/mesa/files/vulkan-mkdir.patch deleted file mode 100644 index 9922a55b40..0000000000 --- a/meta/recipes-graphics/mesa/files/vulkan-mkdir.patch +++ /dev/null | |||
@@ -1,41 +0,0 @@ | |||
1 | Upstream-Status: Submitted | ||
2 | Signed-off-by: Ross Burton <ross.burton@intel.com> | ||
3 | |||
4 | From 4854c72bc21486f81712c8693588f7af6c64cf93 Mon Sep 17 00:00:00 2001 | ||
5 | From: Ross Burton <ross.burton@intel.com> | ||
6 | Date: Wed, 9 May 2018 20:41:36 +0100 | ||
7 | Subject: [PATCH] src/intel/Makefile.vulkan.am: add missing MKDIR_GEN | ||
8 | |||
9 | Out of tree builds can try to write into a directory that doesn't exist yet: | ||
10 | |||
11 | | Traceback (most recent call last): | ||
12 | | File "../../../mesa-18.0.2/src/intel/vulkan/anv_icd.py", line 46, in <module> | ||
13 | | with open(args.out, 'w') as f: | ||
14 | | IOError: [Errno 2] No such file or directory: 'vulkan/intel_icd.x86_64.json' | ||
15 | | Makefile:4882: recipe for target 'vulkan/intel_icd.x86_64.json' failed | ||
16 | |||
17 | Add missing MKDIR_GEN calls to solve this. | ||
18 | --- | ||
19 | src/intel/Makefile.vulkan.am | 2 ++ | ||
20 | 1 file changed, 2 insertions(+) | ||
21 | |||
22 | diff --git a/src/intel/Makefile.vulkan.am b/src/intel/Makefile.vulkan.am | ||
23 | index 0bcbf0419c..4125cb205a 100644 | ||
24 | --- a/src/intel/Makefile.vulkan.am | ||
25 | +++ b/src/intel/Makefile.vulkan.am | ||
26 | @@ -64,10 +64,12 @@ EXTRA_DIST += \ | ||
27 | vulkan/TODO | ||
28 | |||
29 | vulkan/dev_icd.json : vulkan/anv_extensions.py vulkan/anv_icd.py | ||
30 | + $(MKDIR_GEN) | ||
31 | $(AM_V_GEN)$(PYTHON2) $(srcdir)/vulkan/anv_icd.py \ | ||
32 | --lib-path="${abs_top_builddir}/${LIB_DIR}" --out $@ | ||
33 | |||
34 | vulkan/intel_icd.@host_cpu@.json : vulkan/anv_extensions.py vulkan/anv_icd.py | ||
35 | + $(MKDIR_GEN) | ||
36 | $(AM_V_GEN)$(PYTHON2) $(srcdir)/vulkan/anv_icd.py \ | ||
37 | --lib-path="${libdir}" --out $@ | ||
38 | |||
39 | -- | ||
40 | 2.11.0 | ||
41 | |||