Skip to content

Commit

Permalink
misc: use "autoreconf -fi" instead buildconf
Browse files Browse the repository at this point in the history
Signed-off-by: Philip H <47042125+pheiduck@users.noreply.github.com>
Closes #8777
  • Loading branch information
pheiduck authored and bagder committed May 2, 2022
1 parent 9ea1697 commit 5e9a703
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/HYPER.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion docs/RUSTLS.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 2 additions & 2 deletions scripts/coverage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -21,7 +21,7 @@
#
###########################################################################

./buildconf
autoreconf -fi
mkdir -p cvr
cd cvr
../configure --disable-shared --enable-debug --enable-maintainer-mode --enable-code-coverage
Expand Down
4 changes: 2 additions & 2 deletions tests/testcurl.pl
Original file line number Diff line number Diff line change
Expand Up @@ -466,8 +466,8 @@ sub get_host_triplet {
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 = $_;
Expand Down

0 comments on commit 5e9a703

Please sign in to comment.