misc: use "autoreconf -fi" instead buildconf

Signed-off-by: Philip H <47042125+pheiduck@users.noreply.github.com>
Closes #8777
This commit is contained in:
Philip H 2022-05-02 17:52:16 +02:00 committed by Daniel Stenberg
parent 9ea16971fd
commit 5e9a703cf2
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2
4 changed files with 6 additions and 6 deletions

View File

@ -33,7 +33,7 @@ Build curl to use hyper's C API:
% git clone https://github.com/curl/curl
% cd curl
% ./buildconf
% autoreconf -fi
% ./configure --with-hyper=<hyper dir>
% make

View File

@ -21,6 +21,6 @@ Now configure and build curl with rustls:
% git clone https://github.com/curl/curl
% cd curl
% ./buildconf
% autoreconf -fi
% ./configure --with-rustls=${HOME}/rustls-ffi-built
% make

View File

@ -6,7 +6,7 @@
# | (__| |_| | _ <| |___
# \___|\___/|_| \_\_____|
#
# Copyright (C) 1998 - 2020, Daniel Stenberg, <daniel@haxx.se>, et al.
# Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
#
# This software is licensed as described in the file COPYING, which
# you should have received as part of this distribution. The terms
@ -21,7 +21,7 @@
#
###########################################################################
./buildconf
autoreconf -fi
mkdir -p cvr
cd cvr
../configure --disable-shared --enable-debug --enable-maintainer-mode --enable-code-coverage

View File

@ -466,8 +466,8 @@ if ($git) {
unlink "autom4te.cache";
# generate the build files
logit "invoke buildconf";
open(F, "./buildconf 2>&1 |") or die;
logit "invoke autoreconf";
open(F, "autoreconf -fi 2>&1 |") or die;
open(LOG, ">$buildlog") or die;
while (<F>) {
my $ll = $_;