lets remove the cache files when we autogen.
authorCarsten Haitzler <raster@rasterman.com>
Mon, 12 Nov 2012 14:43:59 +0000 (14:43 +0000)
committerCarsten Haitzler <raster@rasterman.com>
Mon, 12 Nov 2012 14:43:59 +0000 (14:43 +0000)
SVN revision: 79165

autogen.sh

index bee4e1b..206085a 100755 (executable)
@@ -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