mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-22 12:32:40 +03:00
* autogen.sh: Fall back to aclocal without "-I gettext.m4" in
case it already has gettext macros elsewhere and doesn't like duplicates (i.e. it's aclocal from Automake-1.4).
This commit is contained in:
parent
df0c5392f4
commit
fe1df0083f
@ -1,3 +1,9 @@
|
||||
2001-08-21 Pavel Roskin <proski@gnu.org>
|
||||
|
||||
* autogen.sh: Fall back to aclocal without "-I gettext.m4" in
|
||||
case it already has gettext macros elsewhere and doesn't like
|
||||
duplicates (i.e. it's aclocal from Automake-1.4).
|
||||
|
||||
2001-08-20 Pavel Roskin <proski@gnu.org>
|
||||
|
||||
* AUTHORS: Updated.
|
||||
|
@ -41,7 +41,9 @@ for i in $m4files; do
|
||||
cp -f $fromdir/$i gettext.m4
|
||||
done
|
||||
|
||||
$ACLOCAL -I macros -I gettext.m4 $ACLOCAL_FLAGS || exit 1
|
||||
$ACLOCAL -I macros -I gettext.m4 $ACLOCAL_FLAGS || \
|
||||
$ACLOCAL -I macros $ACLOCAL_FLAGS || \
|
||||
exit 1
|
||||
$AUTOHEADER || exit 1
|
||||
$AUTOCONF || exit 1
|
||||
$AUTOMAKE -a || exit 1
|
||||
|
Loading…
Reference in New Issue
Block a user