Sterling Hughes's fixes

This commit is contained in:
Daniel Stenberg 2001-05-30 07:59:47 +00:00
parent c503930b8d
commit 285e998fae
2 changed files with 13 additions and 8 deletions

View File

@ -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"

8
reconf
View File

@ -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"