From 0fe41c8690f4480a162f5bd3a8cfe814b7996f72 Mon Sep 17 00:00:00 2001 From: djcb Date: Wed, 28 Dec 2016 16:32:03 +0200 Subject: [PATCH] autogen.sh: enable config-cache --- autogen.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/autogen.sh b/autogen.sh index 225247cb..a084fa57 100755 --- a/autogen.sh +++ b/autogen.sh @@ -11,7 +11,9 @@ if test -z `which autoreconf`; then exit 1 fi +rm -f config.cache rm -rf autom4te.cache + autoreconf --force --install --verbose || exit $? if test -z "$*"; then @@ -20,4 +22,4 @@ else echo "# Configure with parameters $*" fi -./configure $@ +./configure --config-cache $@