Index: autogen.sh =================================================================== RCS file: /cvsroot/classpath/classpath/autogen.sh,v retrieving revision 1.5 diff -u -b -B -r1.5 autogen.sh --- autogen.sh 20 Apr 2004 11:55:26 -0000 1.5 +++ autogen.sh 18 Aug 2004 06:28:55 -0000 @@ -3,16 +3,16 @@ set -e LIBTOOLIZE=libtoolize -${LIBTOOLIZE} --version | head -1 +${LIBTOOLIZE} --version | head -n 1 echo "libtoolize: minimum version required: 1.4.2" AUTOCONF=autoconf -${AUTOCONF} --version | head -1 +${AUTOCONF} --version | head -n 1 echo "autoconf: minimum version required: 2.59" # Autoheader is part of autoconf AUTOHEADER=autoheader -${AUTOHEADER} --version | head -1 +${AUTOHEADER} --version | head -n 1 echo "autoheader: minimum version required: 2.59" AUTOMAKE=automake @@ -21,7 +21,7 @@ elif test -x /usr/bin/automake-1.7; then AUTOMAKE=/usr/bin/automake-1.7 fi -${AUTOMAKE} --version | head -1 +${AUTOMAKE} --version | head -n 1 echo "automake: minimum version required: 1.7.0" # Aclocal is part of automake @@ -31,7 +31,7 @@ elif test -x /usr/bin/aclocal-1.7; then ACLOCAL=/usr/bin/aclocal-1.7 fi -${ACLOCAL} --version | head -1 +${ACLOCAL} --version | head -n 1 echo "aclocal: minimum version required: 1.7.0" echo "libtoolize ..."