blob: b484b5e9e6eca4a43c580bcbe44ded4917cab50a [file] [log] [blame]
Brad Bishopc342db32019-05-15 21:57:59 -04001From f742da8b3913f4818d3f419117076afe62f4dbf4 Mon Sep 17 00:00:00 2001
Brad Bishop1a4b7ee2018-12-16 17:11:34 -08002From: Alexander Kanavin <alex.kanavin@gmail.com>
3Date: Wed, 5 Sep 2018 16:46:52 +0200
4Subject: [PATCH] giscanner: ignore error return codes from ldd-wrapper
5
6prelink-rtld, which we use instead of ldd returns 127 when it can't find a library.
7It is not an error per se, but it breaks subprocess.check_output().
8
9Upstream-Status: Inappropriate [oe-core specific]
10Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
Brad Bishopc342db32019-05-15 21:57:59 -040011
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080012---
13 giscanner/shlibs.py | 2 +-
14 1 file changed, 1 insertion(+), 1 deletion(-)
15
16diff --git a/giscanner/shlibs.py b/giscanner/shlibs.py
Brad Bishopc342db32019-05-15 21:57:59 -040017index d67df95..80352a6 100644
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080018--- a/giscanner/shlibs.py
19+++ b/giscanner/shlibs.py
Brad Bishopc342db32019-05-15 21:57:59 -040020@@ -102,7 +102,7 @@ def _resolve_non_libtool(options, binary, libraries):
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080021 args.extend(['otool', '-L', binary.args[0]])
22 else:
23 args.extend(['ldd', binary.args[0]])
24- output = subprocess.check_output(args)
25+ output = subprocess.run(args, check=False, stdout=subprocess.PIPE).stdout
26 if isinstance(output, bytes):
27 output = output.decode("utf-8", "replace")
28