summaryrefslogtreecommitdiff
path: root/trunk/src
diff options
context:
space:
mode:
authorfuzzyray <fuzzyray@gentoo.org>2007-10-22 16:54:31 +0000
committerfuzzyray <fuzzyray@gentoo.org>2007-10-22 16:54:31 +0000
commitf5fc2975817238520287437bf4edd23fbab80f17 (patch)
tree758769d3023180b94d53e5b05cd21a365739909f /trunk/src
parent6322e07be0ce429aba06a453471537808a3d9e4c (diff)
downloadgentoolkit-f5fc2975817238520287437bf4edd23fbab80f17.tar.gz
Fix regular expression in elf_broken to work with ldd from linux
svn path=/; revision=455
Diffstat (limited to 'trunk/src')
-rwxr-xr-xtrunk/src/revdep-rebuild/revdep-rebuild-sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/trunk/src/revdep-rebuild/revdep-rebuild-sh b/trunk/src/revdep-rebuild/revdep-rebuild-sh
index 2b9210d..c7acdc6 100755
--- a/trunk/src/revdep-rebuild/revdep-rebuild-sh
+++ b/trunk/src/revdep-rebuild/revdep-rebuild-sh
@@ -64,7 +64,7 @@ elf_broken() {
local lib=
for lib in $(ldd "$1" 2>/dev/null | \
- sed -n -e 's/[[:space:]]*\(.*\) => not found .*/\1/p'); do
+ sed -n -e 's/[[:space:]]*\(.*\) => not found.*/\1/p'); do
if elf_needed "$1" "${lib}"; then
echo "(missing ${lib})"
return 0