summary refs log tree commit diff
diff options
context:
space:
mode:
authorAndreas Schwab <schwab@redhat.com>2009-08-10 10:15:44 +0200
committerAndreas Schwab <schwab@redhat.com>2009-08-10 10:15:44 +0200
commit4af7f59a26e334d1fb5f0f10af00feaefc53a1b0 (patch)
treeb6beb79b4a965cb380b41a26ab1e291491ca38bf
parent859300345b2632aa6c27f8c270356d8cc2e3c55f (diff)
downloadglibc-fedora/glibc-2.10.90-13.tar.gz
glibc-fedora/glibc-2.10.90-13.tar.xz
glibc-fedora/glibc-2.10.90-13.zip
-rw-r--r--fedora/glibc.spec.in11
1 files changed, 8 insertions, 3 deletions
diff --git a/fedora/glibc.spec.in b/fedora/glibc.spec.in
index 79513d15ba..65637fb6ae 100644
--- a/fedora/glibc.spec.in
+++ b/fedora/glibc.spec.in
@@ -21,7 +21,7 @@
 Summary: The GNU libc libraries
 Name: glibc
 Version: %{glibcversion}
-Release: 12
+Release: 13
 # GPLv2+ is used in a bunch of programs, LGPLv2+ is used for libraries.
 # Things that are linked directly into dynamically linked programs
 # and shared libraries (e.g. crt files, lib*_nonshared.a) have an additional
@@ -871,7 +871,7 @@ mkdir -p $RPM_BUILD_ROOT/var/cache/ldconfig
 %triggerin common -p /usr/sbin/tzdata-update -- tzdata
 
 %post devel
-/sbin/install-info %{_infodir}/libc.info.gz %{_infodir}/dir || :
+/sbin/install-info %{_infodir}/libc.info.gz %{_infodir}/dir > /dev/null 2>&1 || :
 
 %pre headers
 # this used to be a link and it is causing nightmares now
@@ -881,7 +881,7 @@ fi
 
 %preun devel
 if [ "$1" = 0 ]; then
-  /sbin/install-info --delete %{_infodir}/libc.info.gz %{_infodir}/dir || :
+  /sbin/install-info --delete %{_infodir}/libc.info.gz %{_infodir}/dir > /dev/null 2>&1 || :
 fi
 
 %post utils -p /sbin/ldconfig
@@ -1023,6 +1023,11 @@ rm -f *.filelist*
 %endif
 
 %changelog
+* Mon Aug 10 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-13
+- Update from master.
+  - fix rehashing of unique symbols (#515677)
+- Fix spurious messages with --excludedocs (#515948)
+
 * Mon Aug  3 2009 Andreas Schwab <schwab@redhat.com> - 2.10.90-12
 - Update from master.
   - fix fortify failure with longjmp from alternate stack (#512103)