]> sourceware.org Git - glibc.git/commitdiff
Update scripts/list-sources.sh for ports repository merge.
authorJoseph Myers <joseph@codesourcery.com>
Thu, 26 Jun 2014 21:30:07 +0000 (21:30 +0000)
committerJoseph Myers <joseph@codesourcery.com>
Thu, 26 Jun 2014 21:30:07 +0000 (21:30 +0000)
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.

ChangeLog
scripts/list-sources.sh

index e522e41c9f79c7b3d331021ea84450f807b83da8..67b89571d37decaf425fcf7211d4d28931b70f59 100644 (file)
--- 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>.
index 528e971b42118f30964ac7b2d774c9bec1782bab..d1c6803af6cb5aa2a196e25998d8c5cfc47fbf37 100755 (executable)
@@ -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
 
This page took 0.12065 seconds and 5 git commands to generate.