From a47c0093338d80d84e7033ad15d051925d542ca0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michel=20D=C3=A4nzer?= Date: Wed, 26 Jul 2017 16:46:14 +0900 Subject: [PATCH] autogen.sh: Pass -f to autoreconf To ensure that any existing copies of autotools files will be replaced with the current versions. Acked-by: Alex Deucher --- autogen.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autogen.sh b/autogen.sh index c814d5c..683b323 100755 --- a/autogen.sh +++ b/autogen.sh @@ -6,7 +6,7 @@ test -z "$srcdir" && srcdir=. ORIGDIR=`pwd` cd "$srcdir" -autoreconf -v --install || exit 1 +autoreconf -f -v --install || exit 1 cd "$ORIGDIR" || exit $? git config --local --get format.subjectPrefix >/dev/null 2>&1 ||