* autogen.sh: Check out "intl" and "macros" directories if they

are missing. Simply "cvs up -d" won't restore them.
This commit is contained in:
Pavel Roskin 2001-04-06 18:01:31 +00:00
parent 26ae59b93e
commit 0165d678df
2 changed files with 10 additions and 10 deletions

View File

@ -1,5 +1,8 @@
2001-04-06 Pavel Roskin <proski@gnu.org>
* autogen.sh: Check out "intl" and "macros" directories if they
are missing. Simply "cvs up -d" won't restore them.
* configure.in: Bump version to 4.5.52a.
2001-03-14 Pavel Roskin <proski@gnu.org>

View File

@ -6,19 +6,16 @@ test -z "$srcdir" && srcdir=.
(
cd $srcdir
if test -d macros; then
aclocal -I macros $ACLOCAL_FLAGS || exit 1
else
if test -f aclocal.m4; then
echo Warning: aclocal.m4 cannot be rebuilt
else
echo Error: aclocal.m4 cannot be created
exit 1
fi
fi
: ${CVS=cvs}
test -d macros || $CVS co -d macros gnome-common/macros || exit 1
test -d intl || $CVS co -d intl gnome-common/intl || exit 1
aclocal -I macros $ACLOCAL_FLAGS || exit 1
autoheader || exit 1
autoconf || exit 1
automake -a || exit 1
cd vfs/samba || exit 1
date -u >include/stamp-h.in
autoheader || exit 1