"make syntax-check" vs. a git-based working directory didn't do much.
Here's the fix:
2006-10-14 Jim Meyering <[EMAIL PROTECTED]>
* vc-list-files: Don't filter git-ls-files output through cut.
Index: vc-list-files
===================================================================
RCS file: /fetish/cu/build-aux/vc-list-files,v
retrieving revision 1.4
diff -u -r1.4 vc-list-files
--- vc-list-files 17 Aug 2006 19:58:18 -0000 1.4
+++ vc-list-files 14 Oct 2006 09:30:24 -0000
@@ -36,9 +36,9 @@
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
/fetish/cu/build-aux/ChangeLog,v <-- ChangeLog
new revision: 1.26; previous revision: 1.25
/fetish/cu/build-aux/vc-list-files,v <-- vc-list-files
new revision: 1.5; previous revision: 1.4
_______________________________________________
Bug-coreutils mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/bug-coreutils