diff -r 313875e0a34a -r 5e51c9eb5e83 bootstrap --- a/bootstrap Thu Mar 23 20:43:25 2006 +0000 +++ b/bootstrap Fri Mar 24 20:27:42 2006 +0000 @@ -1,5 +1,13 @@ #!/bin/bash +quiet=0 +function quiet { [[ $quiet == 1 ]]; } + +if [[ "$1" == "-q" ]]; then + quiet=1 + shift +fi + prev= for option do @@ -67,11 +75,13 @@ autoheader=autoheader-$acver fi -echo "Try using 'autoreconf -vi' instead of this." +quiet || echo "Try using 'autoreconf -vi' instead of this." -set -x -$aclocal -I m4 \ -&& libtoolize --force --copy \ -&& $autoconf \ -&& $autoheader \ -&& $automake --add-missing --copy --gnu +set -e +quiet || set -x + +$aclocal -I m4 +(quiet && exec > /dev/null; libtoolize --force --copy) +$autoconf +$autoheader +$automake --add-missing --copy --gnu