From 9506bf412f937f71292ecb70f3244b0a508662c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20K=C4=99pie=C5=84?= Date: Thu, 12 Jul 2018 13:35:10 +0200 Subject: [PATCH] Add "-f" to command line arguments for autoreconf in autogen.sh Depending on tool versions being 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. (cherry picked from commit 45e77a3680c53c5f48657972a2d718079778fbb9) --- autogen.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autogen.sh b/autogen.sh index 7add8eabc1..583b00d870 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