diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | math/Makefile | 3 |
2 files changed, 8 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-20 Adhemerval Zanella <adhemerval.zanella@linaro.org> * sysdeps/unix/sysv/linux/spawni.c (__spawnix): Fix invalid memory diff --git a/math/Makefile b/math/Makefile index b952124999..d440833f4d 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. |