bug-coreutils
[Top][All Lists]
Advanced

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

"cvsu --list" during distcheck


From: Alexandre Duret-Lutz
Subject: "cvsu --list" during distcheck
Date: Sat, 08 Nov 2003 12:41:43 +0100
User-agent: Gnus/5.1003 (Gnus v5.10.3) Emacs/21.3 (gnu/linux)

I can't distcheck coreutils, because it hangs like this:

| make my-distcheck
| make[2]: Entering directory `/home/adl/projs/cvs/coreutils'
| if test -f po/POTFILES.in; then                                 \
|   grep -E -v '^(#|$)' po/POTFILES.in                            \
|     | grep -v '^src/false\.c$' | sort > po-check-1;             \
|   files=;                                                       \
|   for file in $(cvsu --list lib src | grep '\.[chly]$'); do     \
|     case $file in                                               \
|     *.[ch])                                                     \
|       base=`expr " $file" : ' \(.*\)\..'`;                      \
|       { test -f $base.l || test -f $base.y; } && continue;;     \
|     esac;                                                       \
|     files="$files $file";                                       \
|   done;                                                         \
|   grep -E -l '\bN?_\([^)"]*("|$)' $files | sort > po-check-2;   \
|   diff -u po-check-1 po-check-2 || exit 1;                      \
|   rm -f po-check-1 po-check-2;                                  \
| fi
| find: invalid predicate `--list'
| ^C

My copy of `cvsu' comes from the cvs-utils module on Savannah, and
does not support --list.

% cat =cvsu
#! /bin/sh
if test x"$1" = x"-d"; then CVSFLAGS="$CVSFLAGS "-d; shift; fi
test $# = 0 && set .
set fnord `find "$@" -type d ! -type l -exec cvsdir {} \; -prune -print`
shift
for d in ${1+"$@"}; do
    (echo "$d": && cd "$d" && cvs -q update $CVSFLAGS)
done

Apparently this is not the same as yours.  Where can I find yours?
-- 
Alexandre Duret-Lutz





reply via email to

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