diff options
author | Jakub Jelinek <jakub@redhat.com> | 2006-05-01 07:53:45 +0000 |
---|---|---|
committer | Jakub Jelinek <jakub@redhat.com> | 2006-05-01 07:53:45 +0000 |
commit | 410005dea38c87cdd7cb265423903bf42f0a96ef (patch) | |
tree | 74342d303b7b3d860b3163ca084517be942ffde4 /elf/ldd.bash.in | |
parent | 45f1c052dc488bb21093d52bb9a3df18e7b2df36 (diff) | |
download | glibc-410005dea38c87cdd7cb265423903bf42f0a96ef.zip glibc-410005dea38c87cdd7cb265423903bf42f0a96ef.tar.gz glibc-410005dea38c87cdd7cb265423903bf42f0a96ef.tar.bz2 |
Updated to fedora-glibc-20060501T0751
Diffstat (limited to 'elf/ldd.bash.in')
-rw-r--r-- | elf/ldd.bash.in | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/elf/ldd.bash.in b/elf/ldd.bash.in index a22ad15..d1591a5 100644 --- a/elf/ldd.bash.in +++ b/elf/ldd.bash.in @@ -154,6 +154,7 @@ for file do test -x "$file" || echo 'ldd:' $"\ warning: you do not have execution permission for" "\`$file'" >&2 RTLD= + ret=1 for rtld in ${RTLDLIST}; do if test -x $rtld; then verify_out=`${rtld} --verify "$file"` @@ -163,12 +164,6 @@ warning: you do not have execution permission for" "\`$file'" >&2 esac fi done - if test -z "${RTLD}"; then - set ${RTLDLIST} - RTLD=$1 - verify_out=`${RTLD} --verify "$file"` - ret=$? - fi case $ret in 0) # If the program exits with exit code 5, it means the process has been |