Sterling Hughes's fixes
authorDaniel Stenberg <daniel@haxx.se>
Wed, 30 May 2001 07:59:47 +0000 (07:59 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Wed, 30 May 2001 07:59:47 +0000 (07:59 +0000)
buildconf
reconf

index e8baeee..b6ec7e2 100755 (executable)
--- 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"
diff --git a/reconf b/reconf
index fb48aa3..39405b0 100755 (executable)
--- a/reconf
+++ b/reconf
@@ -9,7 +9,7 @@ die(){
        echo "$@" ; exit
 }
 
-aclocal -I .   || die "ahhhhh"
-autoheader     || die "ahhhhh"
-automake       || die "ahhhhh"
-autoconf       || die "ahhhhh"
+aclocal -I . || die "The command 'aclocal -I .' failed"
+autoheader   || die "The command 'autoheader' failed"
+automake     || die "The command 'automake' failed"
+autoconf     || die "The command 'autoconf' failed"