r18089: sometimes autoconf picks up some old stuff:
authorStefan Metzmacher <metze@samba.org>
Tue, 5 Sep 2006 13:43:35 +0000 (13:43 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 19:17:14 +0000 (14:17 -0500)
- remove configure and config.h.in
- cleanup after autoconf and autoheader are done

metze

source/lib/talloc/autogen.sh

index 1ebdb211d9b4a9b9d723008bcdf5b3a77860723a..bf84eeee19a9116f3dc79177449a91321b3e8c31 100755 (executable)
@@ -1,9 +1,14 @@
 #!/bin/sh
 
+rm -rf autom4te.cache
+rm -f configure config.h.in
+
 IPATHS="-I libreplace -I lib/replace -I ../libreplace -I ../replace"
 autoconf $IPATHS || exit 1
 autoheader $IPATHS || exit 1
 
+rm -rf autom4te.cache
+
 echo "Now run ./configure and then make."
 exit 0