From 1ac201024b104b2e6bd331255870fc39db657eec Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Wed, 14 Apr 2004 08:37:07 +0000 Subject: r206: - we know use SVN not CVS:-) - we should cleanup the cache before and after autoconf metze (This used to be commit 114f5198a7e73af5c62fe83145f836588ed365fe) --- source4/autogen.sh | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'source4/autogen.sh') diff --git a/source4/autogen.sh b/source4/autogen.sh index aa8534858e..922cad8e61 100755 --- a/source4/autogen.sh +++ b/source4/autogen.sh @@ -1,6 +1,6 @@ #!/bin/sh -# Run this script to build samba from CVS. +# Run this script to build samba from SVN. ## insert all possible names (only works with ## autoconf 2.x @@ -43,20 +43,22 @@ done ## do we have it? ## if [ "$AUTOCONFFOUND" = "0" -o "$AUTOHEADERFOUND" = "0" ]; then - echo "$0: need autoconf 2.53 or later to build samba from CVS" >&2 + echo "$0: need autoconf 2.53 or later to build samba from SVN" >&2 exit 1 fi echo "$0: running script/mkversion.sh" ./script/mkversion.sh || exit 1 +rm -rf autom4te*.cache + echo "$0: running $AUTOHEADER" $AUTOHEADER || exit 1 echo "$0: running $AUTOCONF" $AUTOCONF || exit 1 -rm -rf autom4te.cache autom4te-2.53.cache +rm -rf autom4te*.cache echo "Now run ./configure and then make." exit 0 -- cgit