mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-22 12:32:40 +03:00
* 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:
parent
26ae59b93e
commit
0165d678df
@ -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>
|
||||
|
17
autogen.sh
17
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
|
||||
|
Loading…
Reference in New Issue
Block a user