]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
autogen.sh: fix autoreconf step
authorPavel Hrdina <phrdina@redhat.com>
Wed, 18 Dec 2019 13:26:58 +0000 (14:26 +0100)
committerPavel Hrdina <phrdina@redhat.com>
Fri, 17 Jan 2020 15:04:26 +0000 (16:04 +0100)
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 <phrdina@redhat.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
autogen.sh

index a1f1943adbd4c8369bb22dc27d052de7a7ab24cc..47446dc785d05b537d3e2209d80a173436a17beb 100755 (executable)
@@ -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