mirror of
https://github.com/moparisthebest/curl
synced 2024-12-21 15:48:49 -05:00
Sterling Hughes's fixes
This commit is contained in:
parent
c503930b8d
commit
285e998fae
13
buildconf
13
buildconf
@ -1,6 +1,11 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
automake Makefile
|
die(){
|
||||||
aclocal
|
echo "$@"
|
||||||
autoheader
|
exit
|
||||||
autoconf
|
}
|
||||||
|
|
||||||
|
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
8
reconf
@ -9,7 +9,7 @@ die(){
|
|||||||
echo "$@" ; exit
|
echo "$@" ; exit
|
||||||
}
|
}
|
||||||
|
|
||||||
aclocal -I . || die "ahhhhh"
|
aclocal -I . || die "The command 'aclocal -I .' failed"
|
||||||
autoheader || die "ahhhhh"
|
autoheader || die "The command 'autoheader' failed"
|
||||||
automake || die "ahhhhh"
|
automake || die "The command 'automake' failed"
|
||||||
autoconf || die "ahhhhh"
|
autoconf || die "The command 'autoconf' failed"
|
||||||
|
Loading…
Reference in New Issue
Block a user