From: Pavel Hrdina Date: Wed, 18 Dec 2019 13:26:58 +0000 (+0100) Subject: autogen.sh: fix autoreconf step X-Git-Tag: v6.1.0-rc1~465 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d0236e2a554f2321512276b897e8a8a44f68e969;p=thirdparty%2Flibvirt.git autogen.sh: fix autoreconf step Running bootstrap and autoreconf from autogen.sh produced different files in build-aux directory. The reason is that gnulib usually have newer version of these files and overwrites them after the autoreconf step. In order to fix it remove the --install and --force options, in addition introduce --verbose option in order to reflect what bootstrap is doing. Signed-off-by: Pavel Hrdina Reviewed-by: Daniel P. Berrangé --- diff --git a/autogen.sh b/autogen.sh index a1f1943adb..47446dc785 100755 --- a/autogen.sh +++ b/autogen.sh @@ -134,7 +134,7 @@ if test -d .git || test -f .git; then # dry run, of course... if test -z "$dry_run"; then echo "Running autoreconf..." - autoreconf -if || { + autoreconf -v || { die "autoreconf failed" } fi