* vc-list-files: Don't filter git-ls-files output through cut.
authorJim Meyering <jim@meyering.net>
Sat, 14 Oct 2006 09:31:27 +0000 (09:31 +0000)
committerJim Meyering <jim@meyering.net>
Sat, 14 Oct 2006 09:31:27 +0000 (09:31 +0000)
build-aux/ChangeLog
build-aux/vc-list-files

index 8d18ca9..4bef6ae 100644 (file)
@@ -1,3 +1,7 @@
+2006-10-14  Jim Meyering  <jim@meyering.net>
+
+       * vc-list-files: Don't filter git-ls-files output through cut.
+
 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
 
        * .cvsignore: New file.
index 2fcc947..b873fbc 100755 (executable)
@@ -36,9 +36,9 @@ esac
 
 if test -d .git; then
   if test "x$include_prefix" = x; then
-    git-ls-files | cut -d ' ' -f 3
+    git-ls-files
   else
-    git-ls-files | cut -d ' ' -f 3 | grep "^$include_prefix/"
+    git-ls-files | grep "^$include_prefix/"
   fi
 elif test -d .hg; then
   if test "x$include_prefix" = x; then