1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-25 14:50:24 +03:00

r206: - we know use SVN not CVS:-)

- we should cleanup the cache before and after autoconf

metze
(This used to be commit 114f5198a7e73af5c62fe83145f836588ed365fe)
This commit is contained in:
Stefan Metzmacher 2004-04-14 08:37:07 +00:00 committed by Gerald (Jerry) Carter
parent dda81bdb92
commit 1ac201024b

View File

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