diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | math/Makefile | 3 |
3 files changed, 9 insertions, 1 deletions
@@ -1,3 +1,9 @@ +2016-03-21 Dylan Alex Simon <dylan-sourceware@dylex.net> + + [BZ #19822] + * math/Makefile ($(inst_libdir)/libm.so): Write output to $@.tmp and + move it to the final $@ location. + 2016-03-15 Andreas Schwab <schwab@suse.de> [BZ #19257] @@ -18,6 +18,7 @@ The following bugs are resolved with this release: [19759] Don't inline mempcpy for x86 [19762] Use HAS_ARCH_FEATURE with Fast_Rep_String [19792] MIPS: backtrace yields infinite backtrace with makecontext + [19822] libm.so install clobbers old version Version 2.23 diff --git a/math/Makefile b/math/Makefile index 7d573a0..6aa87f9 100644 --- a/math/Makefile +++ b/math/Makefile @@ -100,7 +100,8 @@ $(inst_libdir)/libm.so: $(common-objpfx)format.lds \ cat $<; \ echo 'GROUP ( $(slibdir)/libm.so$(libm.so-version) ' \ 'AS_NEEDED ( $(libdir)/libmvec_nonshared.a $(slibdir)/libmvec.so$(libmvec.so-version) ) )' \ - ) > $@ + ) > $@.new + mv -f $@.new $@ endif # Rules for the test suite. |