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.19-704-g354426b


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  354426bb34a7dba084cd1dbef46db0994c48988f (commit)
      from  a3dd035d9d87273d2feae6910f80fe888f6aeba0 (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://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=354426bb34a7dba084cd1dbef46db0994c48988f

commit 354426bb34a7dba084cd1dbef46db0994c48988f
Author: Joseph Myers <joseph@codesourcery.com>
Date:   Thu Jun 26 21:30:07 2014 +0000

    Update scripts/list-sources.sh for ports repository merge.
    
    scripts/list-sources.sh includes handling of ports that has been
    obsolete ever since the ports repository was merged into the libc
    repository.  This patch removes that handling.
    
    Tested by regenerating libc.pot and examining the resulting changes.
    
    	* scripts/list-sources.sh: Do not handle ports specially.

diff --git a/ChangeLog b/ChangeLog
index e522e41..67b8957 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2014-06-26  Joseph Myers  <joseph@codesourcery.com>
+
+	* scripts/list-sources.sh: Do not handle ports specially.
+
 2014-06-26  Roland McGrath  <roland@hack.frob.com>
 
 	* sysdeps/arm/fesetenv.c: Include <fpu_control.h>.
diff --git a/scripts/list-sources.sh b/scripts/list-sources.sh
index 528e971..d1c6803 100755
--- a/scripts/list-sources.sh
+++ b/scripts/list-sources.sh
@@ -10,21 +10,7 @@ case $# in
 esac
 
 if [ -r .git/HEAD ]; then
-
-  # List files for glibc core.
   ${GIT:-git} ls-files
-  # List files for glibc ports.
-  ports="ports"
-  if [ -d "$PWD/$ports" ]; then
-    cd "$PWD/$ports"
-    ${GIT:-git} ls-files | sed -e "s,^,$ports/,g"
-  else
-    # We expect the glibc-ports directory to be symlinked as PORTS.
-    # The glibc release manager will run this script as part of libc.pot
-    # regeneration and should ensure the symlink to PORTS is setup.
-    echo >&2 "WARNING: No \"$ports\" directory found. Expected glibc-ports"\
-	     "source directory to be symlinked as \"$ports\" directory."
-  fi
   exit 0
 fi
 

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

Summary of changes:
 ChangeLog               |    4 ++++
 scripts/list-sources.sh |   14 --------------
 2 files changed, 4 insertions(+), 14 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]