From: Michał Kępień Date: Thu, 12 Jul 2018 11:35:10 +0000 (+0200) Subject: Add "-f" to command line arguments for autoreconf in autogen.sh X-Git-Tag: v9.13.3~106^2~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=45e77a3680c53c5f48657972a2d718079778fbb9;p=thirdparty%2Fbind9.git Add "-f" to command line arguments for autoreconf in autogen.sh 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. --- diff --git a/autogen.sh b/autogen.sh index 7add8eabc1c..583b00d8707 100755 --- a/autogen.sh +++ b/autogen.sh @@ -10,4 +10,4 @@ # information regarding copyright ownership. # Run this script after modifying configure.in to generate configure -autoreconf -i +autoreconf -f -i