diff options
author | Alexey Brodkin <Alexey.Brodkin@synopsys.com> | 2016-06-22 07:38:20 +0300 |
---|---|---|
committer | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2016-06-23 20:48:25 +0200 |
commit | e58bacb7ec462912e843fc616288995db88b7275 (patch) | |
tree | cb7c0a506cdf02f1352594a55f2a75e1b5c4dbd2 /libcrypt/Makefile.in | |
parent | 2eefe0ab83a21e2fa5575e6a1b8b999457984cc7 (diff) |
libs: install backward compatibility symlinks
Simplify the switch from uClibc to uClibc-ng.
Apps already built against uClibc-0.9.x.y require .so.0
libs to present on target which in case of current uClibc-ng is
not the case and those apps could not be run.
This change creates symlinks from .so.1 to .so.0 for
most of other libs in the same way as it was done by
23e96d89b6ab "ldso: install backward compatibility symlink by default"
Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com>
Cc: Waldemar Brodkorb <wbx@uclibc-ng.org>
Cc: Vineet Gupta <vgupta@synopsys.com>
Cc: Anton Kolesov <akolesov@synopsys.com>
Diffstat (limited to 'libcrypt/Makefile.in')
-rw-r--r-- | libcrypt/Makefile.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libcrypt/Makefile.in b/libcrypt/Makefile.in index 94753f4ad..94feacb87 100644 --- a/libcrypt/Makefile.in +++ b/libcrypt/Makefile.in @@ -46,9 +46,13 @@ else $(top_builddir)lib/libcrypt.so: $(libcrypt_OUT)/libcrypt_so.a $(libc.depend) endif $(call link.so,$(libcrypt_FULL_NAME),$(ABI_VERSION)) + # link for backward compatibility + $(call link.so,$(libcrypt_FULL_NAME),0) else $(top_builddir)lib/libcrypt.so: $(libcrypt_OUT)/libcrypt.oS | $(libc.depend) $(call linkm.so,$(libcrypt_FULL_NAME),$(ABI_VERSION)) + # link for backward compatibility + $(call linkm.so,$(libcrypt_FULL_NAME),0) endif $(libcrypt_OUT)/libcrypt_so.a: $(libcrypt-so-y) |