From 6b91f83ce845346872d40a6cd58769d25cc65b53 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Thu, 3 Apr 2008 18:23:40 +0200 Subject: [PATCH] vc-list-files: don't cause coreutils "make po-check" failure * build-aux/vc-list-files: Skip postprocessing when $2 is '.' --- ChangeLog | 5 +++++ build-aux/vc-list-files | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 90d0bb2e3..efd850e3c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-04-03 Jim Meyering + + vc-list-files: don't cause coreutils "make po-check" failure + * build-aux/vc-list-files: Skip postprocessing when $2 is '.' + 2008-04-03 Eric Blake Allow VPATH usage of vc-list-files. diff --git a/build-aux/vc-list-files b/build-aux/vc-list-files index 35046d587..762d7eeb3 100755 --- a/build-aux/vc-list-files +++ b/build-aux/vc-list-files @@ -2,7 +2,7 @@ # List version-controlled file names. # Print a version string. -scriptversion=2008-04-03.14 +scriptversion=2008-04-03.17 # Copyright (C) 2006-2008 Free Software Foundation, Inc. @@ -56,7 +56,7 @@ EOF exit ;; -C) - postprocess="| sed 's|^|$2/|'" + test "$2" = . || postprocess="| sed 's|^|$2/|'" cd "$2" || exit 1 shift; shift ;; esac -- 2.11.0