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 _______________________________________________ Bug-coreutils mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/bug-coreutils