The error buffer was not getting filled when Curl_wait_for_resolv() fails.
[platform/upstream/curl.git] / reconf
1 #!/bin/sh
2 #
3 # $Id$
4 #
5 # re autoconf/automake shell script
6 #
7
8 die(){
9         echo "$@" ; exit
10 }
11
12 aclocal -I . || die "The command 'aclocal -I .' failed"
13 autoheader   || die "The command 'autoheader' failed"
14 automake     || die "The command 'automake' failed"
15 autoconf     || die "The command 'autoconf' failed"