mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-22 20:36:50 +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>
|
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.
|
* configure.in: Bump version to 4.5.52a.
|
||||||
|
|
||||||
2001-03-14 Pavel Roskin <proski@gnu.org>
|
2001-03-14 Pavel Roskin <proski@gnu.org>
|
||||||
|
17
autogen.sh
17
autogen.sh
@ -6,19 +6,16 @@ test -z "$srcdir" && srcdir=.
|
|||||||
|
|
||||||
(
|
(
|
||||||
cd $srcdir
|
cd $srcdir
|
||||||
if test -d macros; then
|
|
||||||
aclocal -I macros $ACLOCAL_FLAGS || exit 1
|
: ${CVS=cvs}
|
||||||
else
|
test -d macros || $CVS co -d macros gnome-common/macros || exit 1
|
||||||
if test -f aclocal.m4; then
|
test -d intl || $CVS co -d intl gnome-common/intl || exit 1
|
||||||
echo Warning: aclocal.m4 cannot be rebuilt
|
|
||||||
else
|
aclocal -I macros $ACLOCAL_FLAGS || exit 1
|
||||||
echo Error: aclocal.m4 cannot be created
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
autoheader || exit 1
|
autoheader || exit 1
|
||||||
autoconf || exit 1
|
autoconf || exit 1
|
||||||
automake -a || exit 1
|
automake -a || exit 1
|
||||||
|
|
||||||
cd vfs/samba || exit 1
|
cd vfs/samba || exit 1
|
||||||
date -u >include/stamp-h.in
|
date -u >include/stamp-h.in
|
||||||
autoheader || exit 1
|
autoheader || exit 1
|
||||||
|
Loading…
Reference in New Issue
Block a user