summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/systemd-bootchart/systemd-bootchart/0003-musl-does-not-provide-canonicalize_file_name.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/systemd-bootchart/systemd-bootchart/0003-musl-does-not-provide-canonicalize_file_name.patch')
-rw-r--r--meta/recipes-devtools/systemd-bootchart/systemd-bootchart/0003-musl-does-not-provide-canonicalize_file_name.patch33
1 files changed, 33 insertions, 0 deletions
diff --git a/meta/recipes-devtools/systemd-bootchart/systemd-bootchart/0003-musl-does-not-provide-canonicalize_file_name.patch b/meta/recipes-devtools/systemd-bootchart/systemd-bootchart/0003-musl-does-not-provide-canonicalize_file_name.patch
new file mode 100644
index 0000000000..7670d95f07
--- /dev/null
+++ b/meta/recipes-devtools/systemd-bootchart/systemd-bootchart/0003-musl-does-not-provide-canonicalize_file_name.patch
@@ -0,0 +1,33 @@
1From 79396449d264bde58b4daa3ef6dd99f0f0652429 Mon Sep 17 00:00:00 2001
2From: Tim Orling <timothy.t.orling@linux.intel.com>
3Date: Thu, 28 Dec 2017 22:10:58 -0800
4Subject: [PATCH 3/3] musl does not provide canonicalize_file_name
5
6Reuse the approach from systemd:
7systemd/0007-check-for-missing-canonicalize_file_name.patch
8
9Based on work by: Khem Raj <raj.khem@gmail.com>
10
11Signed-off-by: Tim Orling <timothy.t.orling@linux.intel.com>
12---
13Upstream-Status: Pending
14
15 src/path-util.c | 2 +-
16 1 file changed, 1 insertion(+), 1 deletion(-)
17
18diff --git a/src/path-util.c b/src/path-util.c
19index 2fb6366..12e2e17 100644
20--- a/src/path-util.c
21+++ b/src/path-util.c
22@@ -63,7 +63,7 @@ char **path_strv_resolve(char **l, const char *prefix) {
23 t = *s;
24
25 errno = 0;
26- u = canonicalize_file_name(t);
27+ u = realpath(t, NULL);
28 if (!u) {
29 if (errno == ENOENT) {
30 if (prefix) {
31--
322.13.6
33