summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmanuele Di Pascale <emanuele@voltanet.io>2018-12-21 11:23:03 +0100
committerEmanuele Di Pascale <emanuele@voltanet.io>2018-12-21 11:23:03 +0100
commit5ca794343925a299cd06ab1d7b07eecea96bb46d (patch)
tree869764120bce9eff62c2c3a15a3b5ef641782d4c
parent0dac58c01213735cda11e10c98f0734b9dc02310 (diff)
/: add -f to autoreconf in bootstrap
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>
-rwxr-xr-xbootstrap.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/bootstrap.sh b/bootstrap.sh
index c0b95d3dd0..c161eef6d5 100755
--- a/bootstrap.sh
+++ b/bootstrap.sh
@@ -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