From e58bacb7ec462912e843fc616288995db88b7275 Mon Sep 17 00:00:00 2001 From: Alexey Brodkin Date: Wed, 22 Jun 2016 07:38:20 +0300 Subject: 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 Cc: Waldemar Brodkorb Cc: Vineet Gupta Cc: Anton Kolesov --- libm/Makefile.in | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'libm') diff --git a/libm/Makefile.in b/libm/Makefile.in index 835e7bf3f..2880512db 100644 --- a/libm/Makefile.in +++ b/libm/Makefile.in @@ -305,9 +305,13 @@ else $(top_builddir)lib/libm.so: $(libm_OUT)/libm_so.a $(libc.depend) endif $(call link.so,$(libm_FULL_NAME),$(ABI_VERSION)) + # link for backward compatibility + $(call link.so,$(libm_FULL_NAME),0) else $(top_builddir)lib/libm.so: $(libm_OUT)/libm.oS | $(libc.depend) $(call linkm.so,$(libm_FULL_NAME),$(ABI_VERSION)) + # link for backward compatibility + $(call linkm.so,$(libm_FULL_NAME),0) endif $(libm_OUT)/libm_so.a: $(libm-so-y) -- cgit v1.2.3