From 0165d678df5da8e51c045dce069f63a20592e6b4 Mon Sep 17 00:00:00 2001 From: Pavel Roskin Date: Fri, 6 Apr 2001 18:01:31 +0000 Subject: [PATCH] * autogen.sh: Check out "intl" and "macros" directories if they are missing. Simply "cvs up -d" won't restore them. --- ChangeLog | 3 +++ autogen.sh | 17 +++++++---------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/ChangeLog b/ChangeLog index 465b5b408..486eb8535 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2001-04-06 Pavel Roskin + * 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 diff --git a/autogen.sh b/autogen.sh index 0fb822624..c1d1d6b1e 100755 --- a/autogen.sh +++ b/autogen.sh @@ -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