From 5e9a703cf211a892e9b74ec11129994dcc241623 Mon Sep 17 00:00:00 2001 From: Philip H <47042125+pheiduck@users.noreply.github.com> Date: Mon, 2 May 2022 17:52:16 +0200 Subject: [PATCH] misc: use "autoreconf -fi" instead buildconf Signed-off-by: Philip H <47042125+pheiduck@users.noreply.github.com> Closes #8777 --- docs/HYPER.md | 2 +- docs/RUSTLS.md | 2 +- scripts/coverage.sh | 4 ++-- tests/testcurl.pl | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/HYPER.md b/docs/HYPER.md index 00c85d576a..ad23a9039d 100644 --- a/docs/HYPER.md +++ b/docs/HYPER.md @@ -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= % make diff --git a/docs/RUSTLS.md b/docs/RUSTLS.md index 17faa20e7c..4b49b5cf79 100644 --- a/docs/RUSTLS.md +++ b/docs/RUSTLS.md @@ -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 diff --git a/scripts/coverage.sh b/scripts/coverage.sh index e2b65b7f05..aeaa235843 100755 --- a/scripts/coverage.sh +++ b/scripts/coverage.sh @@ -6,7 +6,7 @@ # | (__| |_| | _ <| |___ # \___|\___/|_| \_\_____| # -# Copyright (C) 1998 - 2020, Daniel Stenberg, , et al. +# Copyright (C) 1998 - 2022, Daniel Stenberg, , 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 diff --git a/tests/testcurl.pl b/tests/testcurl.pl index eeb42c0703..e642658af4 100755 --- a/tests/testcurl.pl +++ b/tests/testcurl.pl @@ -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 () { my $ll = $_; -- 2.47.3