diff options
author | Daniel Stenberg <daniel@haxx.se> | 2001-05-30 07:59:47 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2001-05-30 07:59:47 +0000 |
commit | 285e998faec7094d0093071c5262281fda5e04f4 (patch) | |
tree | cdd94fa92dc919f8f00983b67a4f39936a22066b | |
parent | c503930b8d5bc62b011961dd5e0b27f80362c322 (diff) | |
download | curl-285e998faec7094d0093071c5262281fda5e04f4.tar.gz |
Sterling Hughes's fixes
-rwxr-xr-x | buildconf | 13 | ||||
-rwxr-xr-x | reconf | 8 |
2 files changed, 13 insertions, 8 deletions
@@ -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" @@ -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" |