summaryrefslogtreecommitdiff
path: root/source4/lib/ldb/autogen.sh
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2006-09-05 13:45:09 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:17:15 -0500
commit14b0bc5d074241f59e29399e017291d59479e7b9 (patch)
treecc3366bf98afe10f7b45efb69307ee42b7465887 /source4/lib/ldb/autogen.sh
parente9c109d21e2729095c31ad9ed96b6f3b2d7844a5 (diff)
downloadsamba-14b0bc5d074241f59e29399e017291d59479e7b9.tar.gz
samba-14b0bc5d074241f59e29399e017291d59479e7b9.tar.bz2
samba-14b0bc5d074241f59e29399e017291d59479e7b9.zip
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)
Diffstat (limited to 'source4/lib/ldb/autogen.sh')
-rwxr-xr-xsource4/lib/ldb/autogen.sh5
1 files changed, 4 insertions, 1 deletions
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