commit: ae82ef5e27c8935a8f503e991710597254b86647
Author: Mike Frysinger <vapier <AT> gentoo <DOT> org>
AuthorDate: Fri May 13 22:28:18 2016 +0000
Commit: Mike Frysinger <vapier <AT> gentoo <DOT> org>
CommitDate: Fri May 13 22:28:18 2016 +0000
URL: https://gitweb.gentoo.org/proj/pax-utils.git/commit/?id=ae82ef5e
lddtree: always inhibit the cache
Make sure that the wrapped binaries don't use the host's ld.so.cache.
This probably shouldn't show up since we're using --library-path, but
in case that doesn't stop things, explicitly disable the search.
lddtree.py | 1 +
1 file changed, 1 insertion(+)
diff --git a/lddtree.py b/lddtree.py
index e663d32..3971a9a 100755
--- a/lddtree.py
+++ b/lddtree.py
@@ -162,6 +162,7 @@ basedir=${base%%/*}
exec \
"${basedir}/%(interp)s" \
--library-path "%(libpaths)s" \
+ --inhibit-cache \
--inhibit-rpath '' \
"${base}.elf" \
"$@"