]> git.proxmox.com Git - mirror_frr.git/commitdiff
/: add -f to autoreconf in bootstrap
authorEmanuele Di Pascale <emanuele@voltanet.io>
Fri, 21 Dec 2018 10:23:03 +0000 (11:23 +0100)
committerEmanuele Di Pascale <emanuele@voltanet.io>
Fri, 21 Dec 2018 10:23:03 +0000 (11:23 +0100)
Depending on tool versions used, "autoreconf -i" may not update all
Autoconf-generated files, which in turn may result in build errors.
Make autogen.sh call autoreconf with the "-f" command line argument to
ensure all Autoconf-generated files are updated when autogen.sh is run.

Signed-off-by: Emanuele Di Pascale <emanuele@voltanet.io>
bootstrap.sh

index c0b95d3dd0b6aa7e6f2ec1ef9fca8add8f26849f..c161eef6d545f46ade19cd82c38fe41dfe4f7ad4 100755 (executable)
@@ -4,4 +4,4 @@
 # and so that those used to the presence of bootstrap.sh or autogen.sh
 # will have an eaiser time.
 
-autoreconf -i
+autoreconf -f -i