diff options
Diffstat (limited to 'build-aux')
-rw-r--r-- | build-aux/ChangeLog | 4 | ||||
-rwxr-xr-x | build-aux/vc-list-files | 8 |
2 files changed, 11 insertions, 1 deletions
diff --git a/build-aux/ChangeLog b/build-aux/ChangeLog index 0ab54c96e..281057a70 100644 --- a/build-aux/ChangeLog +++ b/build-aux/ChangeLog @@ -1,3 +1,7 @@ +2006-07-25 Jim Meyering <jim@meyering.net> + + * vc-list-files: Handle git repositories, too. + 2006-07-19 Jim Meyering <jim@meyering.net> * vc-list-files: Command line args correspond to an "include" diff --git a/build-aux/vc-list-files b/build-aux/vc-list-files index b952466e0..c7c4dbdaf 100755 --- a/build-aux/vc-list-files +++ b/build-aux/vc-list-files @@ -15,7 +15,13 @@ case $# in *) echo "$0: too many arguments" 1>&2; exit 1 ;; esac -if test -d .hg; then +if test -d .git; then + if test "x$include_prefix" = x; then + git-ls-files | cut -d ' ' -f 3 + else + git-ls-files | cut -d ' ' -f 3 | grep "^$include_prefix/" + fi +elif test -d .hg; then if test "x$include_prefix" = x; then hg manifest | cut -d ' ' -f 3 else |