diff options
Diffstat (limited to 'build-aux')
-rwxr-xr-x | build-aux/vc-list-files | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build-aux/vc-list-files b/build-aux/vc-list-files index 5f12218d7e..63b403a116 100755 --- a/build-aux/vc-list-files +++ b/build-aux/vc-list-files @@ -76,12 +76,12 @@ if test -d .git; then elif test -d .hg; then eval exec hg locate '"$dir/*"' $postprocess elif test -d CVS; then + test "$postprocess" = '' && postprocess="| sed 's|^\./||'" if test -x build-aux/cvsu; then eval build-aux/cvsu --find --types=AFGM '"$dir"' $postprocess elif (cvsu --help) >/dev/null 2>&1; then eval cvsu --find --types=AFGM '"$dir"' $postprocess else - test "$postprocess" = '' && postprocess="| sed 's|^\./||'" eval awk -F/ \''{ \ if (!$1 && $3 !~ /^-/) { \ f=FILENAME; \ |