aclocal.m4 should not be deleted by autogen.sh if "macros" directory is

missing
This commit is contained in:
Pavel Roskin 1998-09-08 12:21:59 +00:00
parent 367e8389cd
commit 340fe60801
2 changed files with 9 additions and 1 deletions

View File

@ -3,7 +3,12 @@ test -z "$srcdir" && srcdir=.
( (
cd $srcdir cd $srcdir
cat macros/gnome.m4 macros/gnome-vfs.m4 macros/gnome-undelfs.m4 macros/linger.m4 mc-aclocal.m4 gettext.m4 > aclocal.m4 if test -d macros; then
cat macros/gnome.m4 macros/gnome-vfs.m4 macros/gnome-undelfs.m4 \
macros/linger.m4 mc-aclocal.m4 gettext.m4 > aclocal.m4
else
echo macros directory not found, skipping generation of aclocal.m4
fi
autoheader autoheader
autoconf autoconf
) )

View File

@ -1,5 +1,8 @@
Tue Sep 8 13:10:32 1998 Pavel Roskin <pavel_roskin@geocities.com> Tue Sep 8 13:10:32 1998 Pavel Roskin <pavel_roskin@geocities.com>
* autogen.sh: Don't destroy aclocal.m4 if "macros" directory
is missing
* layout.c: Use stdout instead of stderr in set_hintbar() * layout.c: Use stdout instead of stderr in set_hintbar()
Mon Aug 31 12:40:29 1998 Pavel Machek <pavel@ucw.cz> Mon Aug 31 12:40:29 1998 Pavel Machek <pavel@ucw.cz>