diff options
author | Ulrich Drepper <drepper@gmail.com> | 2011-11-17 12:33:33 -0500 |
---|---|---|
committer | Ulrich Drepper <drepper@gmail.com> | 2011-11-17 12:33:33 -0500 |
commit | 9d65ea3a9b83ac3961229ba296a7caf90abce68d (patch) | |
tree | a9b3c7ac1a524042d35fc22f296058456486d5b1 /scripts | |
parent | 5583a0862cf94f71cbcde91c4043a20af65facca (diff) | |
download | glibc-9d65ea3a9b83ac3961229ba296a7caf90abce68d.zip glibc-9d65ea3a9b83ac3961229ba296a7caf90abce68d.tar.gz glibc-9d65ea3a9b83ac3961229ba296a7caf90abce68d.tar.bz2 |
Remove handling of VCs other then git
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/list-sources.sh | 18 |
1 files changed, 1 insertions, 17 deletions
diff --git a/scripts/list-sources.sh b/scripts/list-sources.sh index 41c8b9e..53b6f7f 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 |