mirror of https://github.com/moparisthebest/curl

2 changed files with 13 additions and 8 deletions
@ -1,6 +1,11 @@
@@ -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" |
||||
|
Loading…
Reference in new issue