]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
Add "-f" to command line arguments for autoreconf in autogen.sh
authorMichał Kępień <michal@isc.org>
Thu, 12 Jul 2018 11:35:10 +0000 (13:35 +0200)
committerMichał Kępień <michal@isc.org>
Fri, 13 Jul 2018 06:21:55 +0000 (08:21 +0200)
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.

autogen.sh

index 7add8eabc1c5da5c074d66b13a4bc2ba9edca387..583b00d87078cac66a528d818bfda372f9485292 100755 (executable)
@@ -10,4 +10,4 @@
 # information regarding copyright ownership.
 
 # Run this script after modifying configure.in to generate configure
-autoreconf -i
+autoreconf -f -i