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.10-254-g77c84ae


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  77c84aeb81808c3109665949448dba59965c391e (commit)
       via  0eb258d291d826d854a12ef0d95c7ca6c359cffa (commit)
      from  2c709c6f05ed5cbcf30df89d3aa63b78a38bf968 (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=77c84aeb81808c3109665949448dba59965c391e

commit 77c84aeb81808c3109665949448dba59965c391e
Author: Andreas Schwab <schwab@redhat.com>
Date:   Fri Aug 7 10:40:42 2009 +0200

    Fix sed expression in TAGS command.
    
    The backslash-newline pair is interpreted as the beginning of an address
    regex.

diff --git a/ChangeLog b/ChangeLog
index 94cfd06..c6169d7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2009-08-07  Andreas Schwab  <schwab@redhat.com>
+
+	* Makefile (TAGS): Use separate sed -e expressions to avoid \
+	inside ''.
+
 2009-08-03  H.J. Lu  <hongjiu.lu@intel.com>
 
 	* sysdeps/i386/i686/multiarch/strcspn.S: Add comments for no
diff --git a/Makefile b/Makefile
index cab5ff3..e346979 100644
--- a/Makefile
+++ b/Makefile
@@ -341,9 +341,9 @@ endif
 
 .PHONY: TAGS
 TAGS:
-	scripts/list-sources.sh | sed -n '/Makefile/p;\
+	scripts/list-sources.sh | sed -n -e '/Makefile/p' \
 	  $(foreach S,[chsSyl] cxx sh bash pl,\
-		    $(subst .,\.,/.$S\(.in\)*$$/p;))' \
+		    $(subst .,\.,-e '/.$S\(.in\)*$$/p')) \
 	| $(ETAGS) -o $@ -
 
 # Make the distribution tarfile.

http://sources.redhat.com/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=0eb258d291d826d854a12ef0d95c7ca6c359cffa

commit 0eb258d291d826d854a12ef0d95c7ca6c359cffa
Author: Andreas Schwab <schwab@redhat.com>
Date:   Thu Aug 6 13:29:14 2009 +0200

    Ignore TAGS.

diff --git a/.gitignore b/.gitignore
index d9294be..a64fda5 100644
--- a/.gitignore
+++ b/.gitignore
@@ -15,6 +15,7 @@ stamp.*
 *.tgz
 *.bz2
 =*
+TAGS
 TODO
 AUTHORS
 copyr-*

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

Summary of changes:
 .gitignore |    1 +
 ChangeLog  |    5 +++++
 Makefile   |    4 ++--
 3 files changed, 8 insertions(+), 2 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]