mirror of
https://github.com/moparisthebest/curl
synced 2024-11-10 03:25:04 -05:00
17 lines
197 B
Bash
Executable File
17 lines
197 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# $Id$
|
|
#
|
|
# re autoconf/automake shell script
|
|
#
|
|
|
|
die(){
|
|
echo "$@" ; exit
|
|
}
|
|
|
|
aclocal || die "ahhhhh"
|
|
autoheader || die "ahhhhh"
|
|
automake || die "ahhhhh"
|
|
autoconf || die "ahhhhh"
|
|
|