diff options
author | Jakub Jelinek <jakub@redhat.com> | 2007-07-12 18:26:36 +0000 |
---|---|---|
committer | Jakub Jelinek <jakub@redhat.com> | 2007-07-12 18:26:36 +0000 |
commit | 0ecb606cb6cf65de1d9fc8a919bceb4be476c602 (patch) | |
tree | 2ea1f8305970753e4a657acb2ccc15ca3eec8e2c /scripts/list-sources.sh | |
parent | 7d58530341304d403a6626d7f7a1913165fe2f32 (diff) | |
download | glibc-0ecb606cb6cf65de1d9fc8a919bceb4be476c602.tar.gz glibc-0ecb606cb6cf65de1d9fc8a919bceb4be476c602.tar.xz glibc-0ecb606cb6cf65de1d9fc8a919bceb4be476c602.zip |
2.5-18.1
Diffstat (limited to 'scripts/list-sources.sh')
-rwxr-xr-x | scripts/list-sources.sh | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/scripts/list-sources.sh b/scripts/list-sources.sh new file mode 100755 index 0000000000..41c8b9eadd --- /dev/null +++ b/scripts/list-sources.sh @@ -0,0 +1,35 @@ +#!/bin/sh +# +# List all the files under version control in the source tree. +# + +case $# in +0) ;; +1) cd "$1" ;; +*) 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 + + exec ${GIT:-git} ls-files + +fi + +echo >&2 'Cannot list sources without some version control system in use.' +exit 1 |