From 14b0bc5d074241f59e29399e017291d59479e7b9 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Tue, 5 Sep 2006 13:45:09 +0000 Subject: r18091: 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 ce94fb008dd427856faa523285fb3b6fe35c3f04) --- source4/lib/ldb/autogen.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/source4/lib/ldb/autogen.sh b/source4/lib/ldb/autogen.sh index 6050abce39..d46a4279f3 100755 --- a/source4/lib/ldb/autogen.sh +++ b/source4/lib/ldb/autogen.sh @@ -1,10 +1,13 @@ #!/bin/sh -rm -rf autom4te.cache/ +rm -rf autom4te.cache +rm -f configure config.h.in autoheader || exit 1 autoconf || exit 1 +rm -rf autom4te.cache + echo "Now run ./configure and then make." exit 0 -- cgit