summaryrefslogtreecommitdiff
path: root/source4/lib/replace/autogen.sh
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2006-09-05 13:41:26 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:17:14 -0500
commit72c697167e6abd5a09f480ffd7735a306241a1f7 (patch)
treedd0d30f6e20bdb8d910dcabdecbc010bebb6da85 /source4/lib/replace/autogen.sh
parent3f42b91246dc5d746bd6b6e9dbaf8f702bd5f5a6 (diff)
downloadsamba-72c697167e6abd5a09f480ffd7735a306241a1f7.tar.gz
samba-72c697167e6abd5a09f480ffd7735a306241a1f7.tar.bz2
samba-72c697167e6abd5a09f480ffd7735a306241a1f7.zip
r18088: 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 c4f91114a3cc741538b358e3e44dc8eb0d13188a)
Diffstat (limited to 'source4/lib/replace/autogen.sh')
-rwxr-xr-xsource4/lib/replace/autogen.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/source4/lib/replace/autogen.sh b/source4/lib/replace/autogen.sh
index 5b4c37cf96..d46a4279f3 100755
--- a/source4/lib/replace/autogen.sh
+++ b/source4/lib/replace/autogen.sh
@@ -1,10 +1,13 @@
#!/bin/sh
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