Author: metze Date: 2006-09-05 13:44:14 +0000 (Tue, 05 Sep 2006) New Revision: 18090
WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=18090 Log: sometimes autoconf picks up some old stuff: - remove configure and config.h.in - cleanup after autoconf and autoheader are done metze Modified: branches/SAMBA_4_0/source/lib/tdb/autogen.sh Changeset: Modified: branches/SAMBA_4_0/source/lib/tdb/autogen.sh =================================================================== --- branches/SAMBA_4_0/source/lib/tdb/autogen.sh 2006-09-05 13:43:35 UTC (rev 18089) +++ branches/SAMBA_4_0/source/lib/tdb/autogen.sh 2006-09-05 13:44:14 UTC (rev 18090) @@ -1,8 +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
