diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-01-20 02:38:25 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-01-20 02:38:25 +0000 |
commit | f3b54baabdcaa38435b8e49d8a690b84db4f9860 (patch) | |
tree | e986064139b5874664a03080d3c42f2193dd07a6 | |
parent | 07251d4ec23ee88be53522a87b82c7bc90f9de1c (diff) | |
download | portage-f3b54baabdcaa38435b8e49d8a690b84db4f9860.tar.gz portage-f3b54baabdcaa38435b8e49d8a690b84db4f9860.tar.bz2 portage-f3b54baabdcaa38435b8e49d8a690b84db4f9860.zip |
also catch leading null runpaths
svn path=/main/trunk/; revision=2567
-rwxr-xr-x | bin/ebuild.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/ebuild.sh b/bin/ebuild.sh index 2d0a2b29c..0ccd616c4 100755 --- a/bin/ebuild.sh +++ b/bin/ebuild.sh @@ -1033,7 +1033,7 @@ dyn_install() { # Don't want paths that point to the tree where the package was built # (older, broken libtools would do this). Also check for null paths # because the loader will search $PWD when it finds null paths. - f=$(scanelf -qyRF '%r %p' "${D}" | grep -E "(${PORTAGE_BUILDDIR}|: |::|^ )") + f=$(scanelf -qyRF '%r %p' "${D}" | grep -E "(${PORTAGE_BUILDDIR}|: |::|^:|^ )") if [[ -n ${f} ]] ; then echo -ne '\a\n' echo "QA Notice: the following files contain insecure RUNPATH's" |