mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-28 00:21:52 +03:00
Remove handling of VCs other then git
This commit is contained in:
@ -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
|
||||
|
||||
|
Reference in New Issue
Block a user