diff options
author | Florian Weimer <fweimer@redhat.com> | 2021-06-28 08:33:57 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2021-06-28 08:33:57 +0200 |
commit | 8208be389bce84be0e1c35a3daa0c3467418f921 (patch) | |
tree | a1e1ace69e87aa508c68b4de3e7aff608c3d648a /elf | |
parent | 6bf789d69e6be48419094ca98f064e00297a27d5 (diff) | |
download | glibc-8208be389bce84be0e1c35a3daa0c3467418f921.tar glibc-8208be389bce84be0e1c35a3daa0c3467418f921.tar.gz glibc-8208be389bce84be0e1c35a3daa0c3467418f921.tar.bz2 glibc-8208be389bce84be0e1c35a3daa0c3467418f921.zip |
Install shared objects under their ABI names
Previously, the installed objects were named like libc-2.33.so,
and the ABI soname libc.so.6 was just a symbolic link.
The Makefile targets to install these symbolic links are no longer
needed after this, so they are removed with this commit. The more
general $(make-link) command (which invokes scripts/rellns-sh) is
retained because other symbolic links are still needed.
Reviewed-by: Carlos O'Donell <carlos@redhat.com>
Tested-by: Carlos O'Donell <carlos@rehdat.com>
Diffstat (limited to 'elf')
-rw-r--r-- | elf/Makefile | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/elf/Makefile b/elf/Makefile index 62f7e8a225..cdbcc14087 100644 --- a/elf/Makefile +++ b/elf/Makefile @@ -630,20 +630,14 @@ $(objpfx)trusted-dirs.st: Makefile $(..)Makeconfig CPPFLAGS-dl-load.c += -I$(objpfx). -I$(csu-objpfx). ifeq (yes,$(build-shared)) -$(inst_slibdir)/$(rtld-version-installed-name): $(objpfx)ld.so $(+force) +$(inst_rtlddir)/$(rtld-installed-name): $(objpfx)ld.so $(+force) $(make-target-directory) $(do-install-program) -$(inst_rtlddir)/$(rtld-installed-name): \ - $(inst_slibdir)/$(rtld-version-installed-name) \ - $(inst_slibdir)/libc-$(version).so - $(make-target-directory) - $(make-shlib-link) - # Special target called by parent to install just the dynamic linker. .PHONY: ldso_install ldso_install: $(inst_rtlddir)/$(rtld-installed-name) -endif +endif # $(build-shared) # Workarounds for ${exec_prefix} expansion in configure variables. |