summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/meson/meson/0001-modules-windows-split-WINDRES-env-variable.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/meson/meson/0001-modules-windows-split-WINDRES-env-variable.patch')
-rw-r--r--meta/recipes-devtools/meson/meson/0001-modules-windows-split-WINDRES-env-variable.patch26
1 files changed, 26 insertions, 0 deletions
diff --git a/meta/recipes-devtools/meson/meson/0001-modules-windows-split-WINDRES-env-variable.patch b/meta/recipes-devtools/meson/meson/0001-modules-windows-split-WINDRES-env-variable.patch
new file mode 100644
index 0000000000..c334e6dd66
--- /dev/null
+++ b/meta/recipes-devtools/meson/meson/0001-modules-windows-split-WINDRES-env-variable.patch
@@ -0,0 +1,26 @@
1From 5293d0f5067b2aeefe9ce3c175c972de367589bc Mon Sep 17 00:00:00 2001
2From: Alexander Kanavin <alex.kanavin@gmail.com>
3Date: Wed, 13 Feb 2019 17:43:54 +0100
4Subject: [PATCH] modules/windows: split WINDRES env variable
5
6As it may contain not just the binary, but also the arguments to it.
7
8Upstream-Status: Pending
9Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
10---
11 mesonbuild/modules/windows.py | 2 +-
12 1 file changed, 1 insertion(+), 1 deletion(-)
13
14diff --git a/mesonbuild/modules/windows.py b/mesonbuild/modules/windows.py
15index d185d89..dbaeb9b 100644
16--- a/mesonbuild/modules/windows.py
17+++ b/mesonbuild/modules/windows.py
18@@ -56,7 +56,7 @@ class WindowsModule(ExtensionModule):
19 if 'WINDRES' in os.environ:
20 # Pick-up env var WINDRES if set. This is often used for
21 # specifying an arch-specific windres.
22- rescomp = ExternalProgram('windres', command=os.environ.get('WINDRES'), silent=True)
23+ rescomp = ExternalProgram('windres', command=os.environ.get('WINDRES').split(), silent=True)
24
25 if not rescomp or not rescomp.found():
26 # Take windres from the config file after the environment, which is