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/Makefile | |
parent | cb34385453717065a4bbfd9fae971b76c186df1e (diff) | |
download | glibc-e2102c142234bd7042fb2623d783a1fba8e5e428.tar glibc-e2102c142234bd7042fb2623d783a1fba8e5e428.tar.gz glibc-e2102c142234bd7042fb2623d783a1fba8e5e428.tar.bz2 glibc-e2102c142234bd7042fb2623d783a1fba8e5e428.zip |
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/Makefile')
-rw-r--r-- | elf/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/elf/Makefile b/elf/Makefile index 33f60c52f1..4e5de91531 100644 --- a/elf/Makefile +++ b/elf/Makefile @@ -171,9 +171,9 @@ bash-ldd-rewrite = $(sh-ldd-rewrite) -e 's%@BASH@%$(BASH)%g' \ -e 's%@TEXTDOMAINDIR@%$(localedir)%g' ifneq ($(have-bash2),yes) -ldd-shell = bash -else ldd-shell = sh +else +ldd-shell = bash endif ifeq ($(ldd-rewrite-script),no) |