diff options
author | Roland McGrath <roland@gnu.org> | 1996-07-15 00:11:11 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1996-07-15 00:11:11 +0000 |
commit | 391763e7551da454700b1749647ded3cdf7366ec (patch) | |
tree | 912a517c887e8ff2b49e3ab298faa9d4f91f97e9 /Makeconfig | |
parent | 2d3bbb8c67ce04adca32c1f99cedafcedb08093a (diff) | |
download | glibc-391763e7551da454700b1749647ded3cdf7366ec.tar.gz glibc-391763e7551da454700b1749647ded3cdf7366ec.tar.xz glibc-391763e7551da454700b1749647ded3cdf7366ec.zip |
* Makeconfig (rtld-installed-name): Set to ld.so.1. cvs/libc-960715
* sysdeps/unix/sysv/linux/Makefile (rtld-installed-name): Variable removed. * manual/Makefile (glibc-targets): Remove subdir_ from elts. * sysdeps/generic/dl-sysdep.c (_dl_sysdep_read_whole_file): New fn.
Diffstat (limited to 'Makeconfig')
-rw-r--r-- | Makeconfig | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Makeconfig b/Makeconfig index f395c18185..c06604c544 100644 --- a/Makeconfig +++ b/Makeconfig @@ -346,8 +346,11 @@ elf-objpfx = $(..)elf/ endif ifeq (yes,$(build-shared)) +# The name under which the run-time dynamic linker is installed. +# We are currently going for the convention that `/lib/ld.so.1' +# names the SVR4/ELF ABI-compliant dynamic linker. ifndef rtld-installed-name -rtld-installed-name = ld.so +rtld-installed-name = ld.so.1 endif endif |