[Stefan Sperling]
> --- dist.sh (revision 900955)
> +++ dist.sh (working copy)
> @@ -228,6 +228,10 @@
>
> rm -f "$DISTPATH/STATUS"
>
> +# Get COMMITTERS from trunk so email addresses are current.
> +${SVN:-svn} cat
> "http://svn.apache.org/repos/asf/subversion/trunk/COMMITTERS" \
> + > $DISTPATH/COMMITTERS
> +
Man, people always use 'svn cat' instead of 'svn export'. Just think,
you could avoid the ">" operator. (Plus, it honors the svn:executable
property ... not that this is needed for COMMITTERS.)
Peter