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-498-g98591e5


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  98591e582047b308de2ed0621088edad5d3cdf8a (commit)
      from  edc5984d4d18296d7aa3d8f4ed8f7336a743170e (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=98591e582047b308de2ed0621088edad5d3cdf8a

commit 98591e582047b308de2ed0621088edad5d3cdf8a
Author: Andreas Schwab <schwab@redhat.com>
Date:   Fri Nov 11 14:43:36 2011 +0100

    Fix db makefile rule for group.db

diff --git a/ChangeLog b/ChangeLog
index 988afe9..e8bef2a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2011-11-11  Andreas Schwab  <schwab@redhat.com>
 
+	* nss/db-Makefile ($(VAR_DB)/group.db): Fix typo in awk script.
+
 	* misc/sys/cdefs.h (__REDIRECT_NTHNL): Define.
 	* setjmp/setjmp.h: Mark functions as non-leaf.
 	* setjmp/bits/setjmp2.h: Likewise.
diff --git a/nss/db-Makefile b/nss/db-Makefile
index 13259c1..f86ba12 100644
--- a/nss/db-Makefile
+++ b/nss/db-Makefile
@@ -59,7 +59,7 @@ $(VAR_DB)/group.db: /etc/group
 			     } \
 			     delete grmems; } } \
 		 END { for (mem in members) \
-			 printf ":%s $s %s\n", mem, mem, members[mem]; }' $^ | \
+			 printf ":%s %s %s\n", mem, mem, members[mem]; }' $^ | \
 	$(MAKEDB) -o $@ -
 	@echo "done."
 

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

Summary of changes:
 ChangeLog       |    2 ++
 nss/db-Makefile |    2 +-
 2 files changed, 3 insertions(+), 1 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]