From 69392bd6f5e182f413fd406c598d4ae0108f166c Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Mon, 26 Feb 2001 22:52:54 +0000 Subject: [PATCH] Script buildconf script is quiet. --- buildconf.sh | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/buildconf.sh b/buildconf.sh index 9c505de..1ded9da 100755 --- a/buildconf.sh +++ b/buildconf.sh @@ -1,6 +1,9 @@ #!/bin/sh -# $Id: buildconf.sh,v 1.1 2001-02-21 09:03:34 adam Exp $ -aclocal -libtoolize --force -automake -a -autoconf +# $Id: buildconf.sh,v 1.2 2001-02-26 22:52:54 adam Exp $ +aclocal || exit 1 +libtoolize --force >/dev/null 2>&1 || exit 2 +automake -a >/dev/null 2>&1 || exit 3 +autoconf || exit 4 +if [ -f config.cache ]; then + rm config.cache +fi -- 1.7.10.4