summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/wayland/wayland/0002-Do-not-hardcode-the-path-to-wayland-scanner.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-graphics/wayland/wayland/0002-Do-not-hardcode-the-path-to-wayland-scanner.patch')
-rw-r--r--meta/recipes-graphics/wayland/wayland/0002-Do-not-hardcode-the-path-to-wayland-scanner.patch23
1 files changed, 12 insertions, 11 deletions
diff --git a/meta/recipes-graphics/wayland/wayland/0002-Do-not-hardcode-the-path-to-wayland-scanner.patch b/meta/recipes-graphics/wayland/wayland/0002-Do-not-hardcode-the-path-to-wayland-scanner.patch
index 2199548bdf..e3e71925b8 100644
--- a/meta/recipes-graphics/wayland/wayland/0002-Do-not-hardcode-the-path-to-wayland-scanner.patch
+++ b/meta/recipes-graphics/wayland/wayland/0002-Do-not-hardcode-the-path-to-wayland-scanner.patch
@@ -1,4 +1,4 @@
1From cbb28635a1079d68e62dbaa1e21791a20dbbbaf4 Mon Sep 17 00:00:00 2001 1From 3e7cd56611aeec274e48a4816bc7c21f74f15be0 Mon Sep 17 00:00:00 2001
2From: Alexander Kanavin <alex.kanavin@gmail.com> 2From: Alexander Kanavin <alex.kanavin@gmail.com>
3Date: Mon, 17 Feb 2020 21:46:18 +0100 3Date: Mon, 17 Feb 2020 21:46:18 +0100
4Subject: [PATCH] Do not hardcode the path to wayland-scanner 4Subject: [PATCH] Do not hardcode the path to wayland-scanner
@@ -7,20 +7,21 @@ This results in host contamination during builds.
7 7
8Upstream-Status: Inappropriate [oe-core specific] 8Upstream-Status: Inappropriate [oe-core specific]
9Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> 9Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
10
10--- 11---
11 src/meson.build | 2 +- 12 src/meson.build | 2 +-
12 1 file changed, 1 insertion(+), 1 deletion(-) 13 1 file changed, 1 insertion(+), 1 deletion(-)
13 14
14diff --git a/src/meson.build b/src/meson.build 15diff --git a/src/meson.build b/src/meson.build
15index 294aee0..7e410fa 100644 16index 15730a3..61edbc8 100644
16--- a/src/meson.build 17--- a/src/meson.build
17+++ b/src/meson.build 18+++ b/src/meson.build
18@@ -49,7 +49,7 @@ pkgconfig.generate( 19@@ -52,7 +52,7 @@ if get_option('scanner')
19 'datarootdir=' + join_paths('${prefix}', get_option('datadir')), 20 'datarootdir=' + join_paths('${prefix}', get_option('datadir')),
20 'pkgdatadir=' + join_paths('${datarootdir}', meson.project_name()), 21 'pkgdatadir=' + join_paths('${datarootdir}', meson.project_name()),
21 'bindir=' + join_paths('${prefix}', get_option('bindir')), 22 'bindir=' + join_paths('${prefix}', get_option('bindir')),
22- 'wayland_scanner=${bindir}/wayland-scanner' 23- 'wayland_scanner=${bindir}/wayland-scanner'
23+ 'wayland_scanner=wayland-scanner' 24+ 'wayland_scanner=wayland-scanner'
24 ], 25 ],
25 filebase: 'wayland-scanner' 26 filebase: 'wayland-scanner'
26 ) 27 )