Author: metze Date: 2006-09-05 13:45:09 +0000 (Tue, 05 Sep 2006) New Revision: 18091
WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=18091 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/ldb/autogen.sh Changeset: Modified: branches/SAMBA_4_0/source/lib/ldb/autogen.sh =================================================================== --- branches/SAMBA_4_0/source/lib/ldb/autogen.sh 2006-09-05 13:44:14 UTC (rev 18090) +++ branches/SAMBA_4_0/source/lib/ldb/autogen.sh 2006-09-05 13:45:09 UTC (rev 18091) @@ -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
