summaryrefslogtreecommitdiff
path: root/buildconf
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2001-05-30 07:59:47 +0000
committerDaniel Stenberg <daniel@haxx.se>2001-05-30 07:59:47 +0000
commit285e998faec7094d0093071c5262281fda5e04f4 (patch)
treecdd94fa92dc919f8f00983b67a4f39936a22066b /buildconf
parentc503930b8d5bc62b011961dd5e0b27f80362c322 (diff)
downloadcurl-285e998faec7094d0093071c5262281fda5e04f4.tar.gz
Sterling Hughes's fixes
Diffstat (limited to 'buildconf')
-rwxr-xr-xbuildconf13
1 files changed, 9 insertions, 4 deletions
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"