summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@gmail.com>2011-11-17 12:33:33 -0500
committerUlrich Drepper <drepper@gmail.com>2011-11-17 12:33:33 -0500
commit9d65ea3a9b83ac3961229ba296a7caf90abce68d (patch)
treea9b3c7ac1a524042d35fc22f296058456486d5b1 /scripts
parent5583a0862cf94f71cbcde91c4043a20af65facca (diff)
downloadglibc-9d65ea3a9b83ac3961229ba296a7caf90abce68d.tar.gz
Remove handling of VCs other then git
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/list-sources.sh18
1 files changed, 1 insertions, 17 deletions
diff --git a/scripts/list-sources.sh b/scripts/list-sources.sh
index 41c8b9eadd..53b6f7f0ee 100755
--- a/scripts/list-sources.sh
+++ b/scripts/list-sources.sh
@@ -9,23 +9,7 @@ case $# in
*) echo >&2 "Usage: $0 [top_srcdir]"; exit 2 ;;
esac
-if [ -r CVS/Entries ]; then
-
- ${CVS:-cvs} status 2>&1 | ${AWK:-awk} '
-NF >= 2 && $(NF - 1) == "Examining" { dir = $NF }
-$1 == "File:" { print (dir == ".") ? $2 : (dir "/" $2) }'
- exit $?
-
-elif [ -r .svn/entries ]; then
-
- ${SVN:-svn} ls -R | sed '/\/$/d'
- exit $?
-
-elif [ -r MT/options ]; then
-
- exec ${MONOTONE:-monotone} list known
-
-elif [ -r .git/HEAD ]; then
+if [ -r .git/HEAD ]; then
exec ${GIT:-git} ls-files