This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch, master, updated. glibc-2.14-139-g9191c04


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  9191c04a7e19fffbea0a08523e579cd8e55142df (commit)
      from  bba33c289b1b24e1bb3075b7fce5b56c9d01ce2f (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sources.redhat.com/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=9191c04a7e19fffbea0a08523e579cd8e55142df

commit 9191c04a7e19fffbea0a08523e579cd8e55142df
Author: Ulrich Drepper <drepper@gmail.com>
Date:   Sat Jul 23 15:28:31 2011 -0400

    Adjust test for correct installation

diff --git a/ChangeLog b/ChangeLog
index 9ae8c04..124e8ff 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2011-07-23  Ulrich Drepper  <drepper@gmail.com>
 
+	[BZ #13021]
+	* scripts/test-installation.pl: Don't expect libnss_test1 to be
+	installed.
+
 	* sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): Fix one more
 	typo.
 	(_dl_x86_64_save_sse): Likewise.
diff --git a/NEWS b/NEWS
index 0be2e91..1abcae1 100644
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,4 @@
-GNU C Library NEWS -- history of user-visible changes.  2011-7-20
+GNU C Library NEWS -- history of user-visible changes.  2011-7-23
 Copyright (C) 1992-2009, 2010, 2011 Free Software Foundation, Inc.
 See the end for copying conditions.
 
@@ -9,7 +9,7 @@ Version 2.15
 
 * The following bugs are resolved with this release:
 
-  9696, 12868, 12852, 12874, 12885, 12907, 12922, 12935, 13007
+  9696, 12868, 12852, 12874, 12885, 12907, 12922, 12935, 13007, 13021
 
 * New program pldd to list loaded object of a process
   Implemented by Ulrich Drepper.
diff --git a/scripts/test-installation.pl b/scripts/test-installation.pl
index 90cd9d7..25a919b 100755
--- a/scripts/test-installation.pl
+++ b/scripts/test-installation.pl
@@ -1,5 +1,5 @@
 #! /usr/bin/perl -w
-# Copyright (C) 1997, 1998, 1999, 2004 Free Software Foundation, Inc.
+# Copyright (C) 1997, 1998, 1999, 2004, 2011 Free Software Foundation, Inc.
 # This file is part of the GNU C Library.
 # Contributed by Andreas Jaeger <aj@arthur.rhein-neckar.de>, 1997.
 
@@ -105,8 +105,10 @@ while (<SOVERSIONS>) {
     # - libdb1 since it conflicts with libdb
     # - libnss1_* from glibc-compat add-on
     # - libthread_db since it contains unresolved references
+    # - it's just a test NSS module
     if ($name ne "nss_ldap" && $name ne "db1"
-	&& !($name =~/^nss1_/) && $name ne "thread_db") {
+	&& !($name =~/^nss1_/) && $name ne "thread_db"
+	&& $name ne "nss_test1") {
       $link_libs .= " -l$name";
       $versions{$name} = $version;
     }

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog                    |    4 ++++
 NEWS                         |    4 ++--
 scripts/test-installation.pl |    6 ++++--
 3 files changed, 10 insertions(+), 4 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]