autogen.sh: enable config-cache

This commit is contained in:
djcb 2016-12-28 16:32:03 +02:00
parent 887e75c4ee
commit 0fe41c8690
1 changed files with 3 additions and 1 deletions

View File

@ -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 $@