diff options
Diffstat (limited to 'meta/recipes-graphics/mesa/files/vulkan-mkdir.patch')
-rw-r--r-- | meta/recipes-graphics/mesa/files/vulkan-mkdir.patch | 37 |
1 files changed, 0 insertions, 37 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 15ee5eeb14..0000000000 --- a/meta/recipes-graphics/mesa/files/vulkan-mkdir.patch +++ /dev/null | |||
@@ -1,37 +0,0 @@ | |||
1 | Upstream-Status: Submitted | ||
2 | Signed-off-by: Ross Burton <ross.burton@intel.com> | ||
3 | |||
4 | From c78979fd95a1c4f732f7e6edf0f32c524e5955b8 Mon Sep 17 00:00:00 2001 | ||
5 | From: Ross Burton <ross.burton@intel.com> | ||
6 | Date: Wed, 12 Jul 2017 17:10:07 +0100 | ||
7 | Subject: [PATCH] src/intel/Makefile.vulkan.am: create target directories when | ||
8 | required | ||
9 | |||
10 | In out-of-tree builds src/intel/vulkan won't exist, so always create it before | ||
11 | writing into it. | ||
12 | |||
13 | Signed-off-by: Ross Burton <ross.burton@intel.com> | ||
14 | --- | ||
15 | src/intel/Makefile.vulkan.am | 2 ++ | ||
16 | 1 file changed, 2 insertions(+) | ||
17 | |||
18 | diff --git a/src/intel/Makefile.vulkan.am b/src/intel/Makefile.vulkan.am | ||
19 | index 3857a5dc62..26e9cd410c 100644 | ||
20 | --- a/src/intel/Makefile.vulkan.am | ||
21 | +++ b/src/intel/Makefile.vulkan.am | ||
22 | @@ -44,11 +44,13 @@ EXTRA_DIST += \ | ||
23 | vulkan/TODO | ||
24 | |||
25 | vulkan/dev_icd.json : vulkan/dev_icd.json.in | ||
26 | + $(MKDIR_GEN) | ||
27 | $(AM_V_GEN) $(SED) \ | ||
28 | -e "s#@build_libdir@#${abs_top_builddir}/${LIB_DIR}#" \ | ||
29 | < $(srcdir)/vulkan/dev_icd.json.in > $@ | ||
30 | |||
31 | vulkan/intel_icd.@host_cpu@.json : vulkan/intel_icd.json.in | ||
32 | + $(MKDIR_GEN) | ||
33 | $(AM_V_GEN) $(SED) \ | ||
34 | -e "s#@install_libdir@#${libdir}#" \ | ||
35 | < $(srcdir)/vulkan/intel_icd.json.in > $@ | ||
36 | -- | ||
37 | 2.11.0 | ||