bug-coreutils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

FYI: "make syntax-check" vs. a git-based working directory


From: Jim Meyering
Subject: FYI: "make syntax-check" vs. a git-based working directory
Date: Sat, 14 Oct 2006 11:32:48 +0200

"make syntax-check" vs. a git-based working directory didn't do much.
Here's the fix:

2006-10-14  Jim Meyering  <address@hidden>

        * 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




reply via email to

[Prev in Thread] Current Thread [Next in Thread]