From 12a2eacfb3736aac2304e44b8593c34efac06246 Mon Sep 17 00:00:00 2001 From: Carsten Haitzler Date: Mon, 12 Nov 2012 14:43:59 +0000 Subject: [PATCH] lets remove the cache files when we autogen. SVN revision: 79165 --- autogen.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/autogen.sh b/autogen.sh index bee4e1b94..206085ac5 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,7 +1,10 @@ #!/bin/sh +rm -rf autom4te.cache +rm -f aclocal.m4 ltmain.sh config.cache + autoreconf --symlink --install if [ -z "$NOCONFIGURE" ]; then - exec ./configure -C "$@" + exec ./configure -C "$@" fi