Gentoo Archives: gentoo-commits

From: Mike Frysinger <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/pax-utils:master commit in: /
Date: Tue, 31 May 2016 22:27:10
Message-Id: 1463178498.ae82ef5e27c8935a8f503e991710597254b86647.vapier@gentoo
1 commit: ae82ef5e27c8935a8f503e991710597254b86647
2 Author: Mike Frysinger <vapier <AT> gentoo <DOT> org>
3 AuthorDate: Fri May 13 22:28:18 2016 +0000
4 Commit: Mike Frysinger <vapier <AT> gentoo <DOT> org>
5 CommitDate: Fri May 13 22:28:18 2016 +0000
6 URL: https://gitweb.gentoo.org/proj/pax-utils.git/commit/?id=ae82ef5e
7
8 lddtree: always inhibit the cache
9
10 Make sure that the wrapped binaries don't use the host's ld.so.cache.
11 This probably shouldn't show up since we're using --library-path, but
12 in case that doesn't stop things, explicitly disable the search.
13
14 lddtree.py | 1 +
15 1 file changed, 1 insertion(+)
16
17 diff --git a/lddtree.py b/lddtree.py
18 index e663d32..3971a9a 100755
19 --- a/lddtree.py
20 +++ b/lddtree.py
21 @@ -162,6 +162,7 @@ basedir=${base%%/*}
22 exec \
23 "${basedir}/%(interp)s" \
24 --library-path "%(libpaths)s" \
25 + --inhibit-cache \
26 --inhibit-rpath '' \
27 "${base}.elf" \
28 "$@"