From bf0250c621f10a6548eb75601cb61a23286f6e71 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Tue, 5 Sep 2006 13:43:35 +0000 Subject: r18089: sometimes autoconf picks up some old stuff: - remove configure and config.h.in - cleanup after autoconf and autoheader are done metze (This used to be commit 8246d8ecd2679af59e32901174638a166ed69222) --- source4/lib/talloc/autogen.sh | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'source4/lib') diff --git a/source4/lib/talloc/autogen.sh b/source4/lib/talloc/autogen.sh index 1ebdb211d9..bf84eeee19 100755 --- a/source4/lib/talloc/autogen.sh +++ b/source4/lib/talloc/autogen.sh @@ -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 -- cgit