diff options
author | Khem Raj <raj.khem@gmail.com> | 2024-08-26 14:28:32 -0700 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2024-08-26 14:30:25 -0700 |
commit | e8649443fc91a8cd0c7d3b0010617080ba31c0db (patch) | |
tree | f148e1e55743ac38d64b0f23a1d1c4b4a7457066 /meta-networking | |
parent | a4cad069d2c036f9e6ef07e57bb35d91008d1ff7 (diff) | |
download | meta-openembedded-e8649443fc91a8cd0c7d3b0010617080ba31c0db.tar.gz |
bluealsa: Update cython patch to latest upstream patch
This patch reflects the latest revision submitted upstream
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-networking')
-rw-r--r-- | meta-networking/recipes-connectivity/blueman/blueman/0001-meson-DO-not-emit-absolute-path-when-S-B.patch | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/meta-networking/recipes-connectivity/blueman/blueman/0001-meson-DO-not-emit-absolute-path-when-S-B.patch b/meta-networking/recipes-connectivity/blueman/blueman/0001-meson-DO-not-emit-absolute-path-when-S-B.patch index 10f89a124c..6e48b70243 100644 --- a/meta-networking/recipes-connectivity/blueman/blueman/0001-meson-DO-not-emit-absolute-path-when-S-B.patch +++ b/meta-networking/recipes-connectivity/blueman/blueman/0001-meson-DO-not-emit-absolute-path-when-S-B.patch | |||
@@ -1,7 +1,7 @@ | |||
1 | From 18af739fd96960bbc8c5db5dd290d2f9134cd347 Mon Sep 17 00:00:00 2001 | 1 | From 4947abc5ede2dc356f011b7c45f6760c9c2ce9f1 Mon Sep 17 00:00:00 2001 |
2 | From: Khem Raj <raj.khem@gmail.com> | 2 | From: Khem Raj <raj.khem@gmail.com> |
3 | Date: Wed, 14 Aug 2024 21:26:24 -0700 | 3 | Date: Wed, 14 Aug 2024 21:26:24 -0700 |
4 | Subject: [PATCH] meson: DO not emit absolute path when S != B | 4 | Subject: [PATCH] meson: Do not emit absolute path when S != B |
5 | 5 | ||
6 | build systems like OE build outside sourcetree in such cases it works | 6 | build systems like OE build outside sourcetree in such cases it works |
7 | ok but cython resolves the input file to absolute path and that gets | 7 | ok but cython resolves the input file to absolute path and that gets |
@@ -17,14 +17,14 @@ See cython discussion on [1] | |||
17 | 17 | ||
18 | [1] https://github.com/cython/cython/issues/5949 | 18 | [1] https://github.com/cython/cython/issues/5949 |
19 | 19 | ||
20 | Upstream-Status: Submitted [https://github.com/blueman-project/blueman/pull/2461] | 20 | Upstream-Status: Submitted [https://github.com/blueman-project/blueman/pull/2461] |
21 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | 21 | Signed-off-by: Khem Raj <raj.khem@gmail.com> |
22 | --- | 22 | --- |
23 | module/meson.build | 2 +- | 23 | module/meson.build | 2 +- |
24 | 1 file changed, 1 insertion(+), 1 deletion(-) | 24 | 1 file changed, 1 insertion(+), 1 deletion(-) |
25 | 25 | ||
26 | diff --git a/module/meson.build b/module/meson.build | 26 | diff --git a/module/meson.build b/module/meson.build |
27 | index 096ad7c8..e3d96f17 100644 | 27 | index 096ad7c8..fddef547 100644 |
28 | --- a/module/meson.build | 28 | --- a/module/meson.build |
29 | +++ b/module/meson.build | 29 | +++ b/module/meson.build |
30 | @@ -4,7 +4,7 @@ blueman_c = custom_target( | 30 | @@ -4,7 +4,7 @@ blueman_c = custom_target( |
@@ -32,7 +32,7 @@ index 096ad7c8..e3d96f17 100644 | |||
32 | output: '_blueman.c', | 32 | output: '_blueman.c', |
33 | input: '_blueman.pyx', | 33 | input: '_blueman.pyx', |
34 | - command: [cython, '--output-file', '@OUTPUT@', '@INPUT@']) | 34 | - command: [cython, '--output-file', '@OUTPUT@', '@INPUT@']) |
35 | + command: [cython, '-w', meson.source_root(), '--output-file', meson.build_root() + '/' + '@OUTPUT@', '@INPUT@']) | 35 | + command: [cython, '-w', meson.source_root(), '--output-file', join_paths(meson.build_root(), '@OUTPUT@'), join_paths(meson.build_root(), '@INPUT@')]) |
36 | 36 | ||
37 | sources = [ | 37 | sources = [ |
38 | blueman_c, | 38 | blueman_c, |