1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-29 21:47:30 +03:00

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)
This commit is contained in:
Stefan Metzmacher 2006-09-05 13:45:09 +00:00 committed by Gerald (Jerry) Carter
parent e9c109d21e
commit 14b0bc5d07

View File

@ -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