From 285e998faec7094d0093071c5262281fda5e04f4 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Wed, 30 May 2001 07:59:47 +0000 Subject: Sterling Hughes's fixes --- buildconf | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) (limited to 'buildconf') diff --git a/buildconf b/buildconf index e8baeee10..b6ec7e2d5 100755 --- a/buildconf +++ b/buildconf @@ -1,6 +1,11 @@ #!/bin/sh -automake Makefile -aclocal -autoheader -autoconf +die(){ + echo "$@" + exit +} + +automake Makefile || die "The command 'automake Makefile' failed" +aclocal || die "The command 'aclocal' failed" +autoheader || die "The command 'autoheader' failed" +autoconf || die "The command 'autoconf' failed" -- cgit v1.2.3