]> git.ipfire.org Git - thirdparty/glibc.git/commit
math: don't clobber old libm.so on install [BZ #19822]
authorDylan Alex Simon <dylan-sourceware@dylex.net>
Tue, 15 Mar 2016 17:20:01 +0000 (13:20 -0400)
committerMike Frysinger <vapier@gentoo.org>
Mon, 21 Mar 2016 06:21:12 +0000 (02:21 -0400)
commit73f158cef52f3968e0b9a7785638cf1737c35306
tree826f37db66f0dbe4a01f37f9fc7809de02d9a65a
parent317da342ba4417c30d985f5593d78bb1364a62c3
math: don't clobber old libm.so on install [BZ #19822]

When installing glibc (w/mathvec enabled) in-place on a system with
a glibc w/out mathvec enabled, the install will clobber the existing
libm.so (e.g., /lib64/libm-2.21.so) with a linker script.  This is
because libm.so is a symlink to libm.so.6 which is a symlink to the
final libm-2.21.so file.  When the makefile writes the linker script
directly to libm.so, it gets clobbered.

The simple patch below to math/Makefile fixes this.  It is based on
the nptl Makefile, which does exactly the same thing in a safer way.

(cherry picked from commit f9378ac3773ffe998a2b3406568778ee9f77f759)
ChangeLog
NEWS
math/Makefile