diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-03-29 21:14:40 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-03-29 21:14:40 +0000 |
commit | e2102c142234bd7042fb2623d783a1fba8e5e428 (patch) | |
tree | ecfb52a5ed05a4cce2e022c7c4ba9675e1f758f2 /elf/ldd.sh.in | |
parent | cb34385453717065a4bbfd9fae971b76c186df1e (diff) | |
download | glibc-e2102c142234bd7042fb2623d783a1fba8e5e428.zip glibc-e2102c142234bd7042fb2623d783a1fba8e5e428.tar.gz glibc-e2102c142234bd7042fb2623d783a1fba8e5e428.tar.bz2 |
Update.
1998-03-29 20:59 Ulrich Drepper <drepper@cygnus.com>
* elf/Makefile: Fix typo.
* elf/ldd.bash.in: Collect output of ldd --verify in verify_out.
* elf/ldd.sh.in: Likewise.
* elf/ldsodefs.h: Declare _dl_correct_cache_id.
* elf/rtld.c (dl_main): In --verify mode allow platform specifc action.
Use strsep correctly.
(process_envvars): Allow platform specific variables.
* sysdeps/generic/dl-cache.c (_dl_correct_cache_id): New variable.
(_dl_load_cache_lookup): Test cache IDs found against
_dl_correct_cache_id.
* sysdeps/generic/dl-librecon.h: New file.
* sysdeps/unix/sysv/linux/dl-librecon.h: New file.
* sysdeps/unix/sysv/linux/lddlibc4.c: Include error.h.
* sysdeps/unix/sysv/linux/ldd-rewrite.sed: New file.
Diffstat (limited to 'elf/ldd.sh.in')
-rw-r--r-- | elf/ldd.sh.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/elf/ldd.sh.in b/elf/ldd.sh.in index a82deb5..2447a90 100644 --- a/elf/ldd.sh.in +++ b/elf/ldd.sh.in @@ -113,7 +113,7 @@ Try \`ldd --help' for more information." if test -r "$file"; then test -x "$file" || echo "ldd: warning: you do not have execution permission for \`$file'" - ${RTLD} --verify "$file" + verify_out=`${RTLD} --verify "$file"` case $? in 0) eval $add_env exec '"$file"' || exit 1 @@ -156,7 +156,7 @@ Try \`ldd --help' for more information." if test -r "$file"; then test -x "$file" || echo "\ ldd: warning: you do not have execution permission for \`$file'" - ${RTLD} --verify "$file" + verify_out=`${RTLD} --verify "$file"` case $? in 0) eval $add_env '"$file"' || result=1 |