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 /Makefile | |
| parent | 6bf789d69e6be48419094ca98f064e00297a27d5 (diff) | |
| download | glibc-8208be389bce84be0e1c35a3daa0c3467418f921.tar.xz 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 'Makefile')
| -rw-r--r-- | Makefile | 6 |
1 files changed, 0 insertions, 6 deletions
@@ -109,12 +109,6 @@ elf/ldso_install: # Ignore the error if we cannot update /etc/ld.so.cache. ifeq (no,$(cross-compiling)) ifeq (yes,$(build-shared)) -install: install-symbolic-link -.PHONY: install-symbolic-link -install-symbolic-link: subdir_install - $(symbolic-link-prog) $(symbolic-link-list) - rm -f $(symbolic-link-list) - install: -test ! -x $(elf-objpfx)ldconfig || LC_ALL=C \ $(elf-objpfx)ldconfig $(addprefix -r ,$(install_root)) \ |
