summaryrefslogtreecommitdiffstats
path: root/patches/meson-0.55.0/0001-only-use-paths-for-shared-libaries-in-get_link_dep_s.patch
diff options
context:
space:
mode:
Diffstat (limited to 'patches/meson-0.55.0/0001-only-use-paths-for-shared-libaries-in-get_link_dep_s.patch')
-rw-r--r--patches/meson-0.55.0/0001-only-use-paths-for-shared-libaries-in-get_link_dep_s.patch26
1 files changed, 0 insertions, 26 deletions
diff --git a/patches/meson-0.55.0/0001-only-use-paths-for-shared-libaries-in-get_link_dep_s.patch b/patches/meson-0.55.0/0001-only-use-paths-for-shared-libaries-in-get_link_dep_s.patch
deleted file mode 100644
index 3a98d8a0d..000000000
--- a/patches/meson-0.55.0/0001-only-use-paths-for-shared-libaries-in-get_link_dep_s.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-From: Michael Olbrich <m.olbrich@pengutronix.de>
-Date: Mon, 18 Mar 2019 10:41:08 +0100
-Subject: [PATCH] only use paths for shared libaries in get_link_dep_subdirs()
-
-This is used for -rpath / -rpath-link. So paths for anything else make no
-sense.
-
-Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
----
- mesonbuild/build.py | 3 ++-
- 1 file changed, 2 insertions(+), 1 deletion(-)
-
-diff --git a/mesonbuild/build.py b/mesonbuild/build.py
-index d7f3b66c461d..83acf43db508 100644
---- a/mesonbuild/build.py
-+++ b/mesonbuild/build.py
-@@ -819,7 +819,8 @@ class BuildTarget(Target):
- def get_link_dep_subdirs(self):
- result = OrderedSet()
- for i in self.link_targets:
-- result.add(i.get_subdir())
-+ if isinstance(i, SharedLibrary):
-+ result.add(i.get_subdir())
- result.update(i.get_link_dep_subdirs())
- return result
-