mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-22 20:36:50 +03:00
Fix redirection to stderr.
Thanks to Roland Illig <roland.illig@gmx.de>
This commit is contained in:
parent
7e211ffccc
commit
d7773a07e0
18
autogen.sh
18
autogen.sh
@ -50,19 +50,19 @@ sed_cmd="${sed_cmd} -e 's/\\(......\\).*/\\1/'"
|
|||||||
|
|
||||||
gettext_ver=`$GETTEXTIZE --version | eval ${sed_cmd}`
|
gettext_ver=`$GETTEXTIZE --version | eval ${sed_cmd}`
|
||||||
if test -z "$gettext_ver"; then
|
if test -z "$gettext_ver"; then
|
||||||
echo "Cannot determine version of gettext" 2>&1
|
echo "Cannot determine version of gettext" >&2
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if test "$gettext_ver" -lt 01038; then
|
if test "$gettext_ver" -lt 01038; then
|
||||||
echo "Don't use gettext older than 0.10.38" 2>&1
|
echo "Don't use gettext older than 0.10.38" >&2
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
rm -rf intl
|
rm -rf intl
|
||||||
if test "$gettext_ver" -ge 01100; then
|
if test "$gettext_ver" -ge 01100; then
|
||||||
if test "$gettext_ver" -lt 01105; then
|
if test "$gettext_ver" -lt 01105; then
|
||||||
echo "Upgrade gettext to at least 0.11.5 or downgrade to 0.10.40" 2>&1
|
echo "Upgrade gettext to at least 0.11.5 or downgrade to 0.10.40" >&2
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
$AUTOPOINT --force || exit 1
|
$AUTOPOINT --force || exit 1
|
||||||
@ -87,15 +87,15 @@ ACLOCAL_INCLUDES="-I m4"
|
|||||||
|
|
||||||
$ACLOCAL $ACLOCAL_INCLUDES $ACLOCAL_FLAGS
|
$ACLOCAL $ACLOCAL_INCLUDES $ACLOCAL_FLAGS
|
||||||
test -f aclocal.m4 || \
|
test -f aclocal.m4 || \
|
||||||
{ echo "aclocal failed to generate aclocal.m4" 2>&1; exit 1; }
|
{ echo "aclocal failed to generate aclocal.m4" >&2; exit 1; }
|
||||||
|
|
||||||
$AUTOHEADER || exit 1
|
$AUTOHEADER || exit 1
|
||||||
test -f config.h.in || \
|
test -f config.h.in || \
|
||||||
{ echo "autoheader failed to generate config.h.in" 2>&1; exit 1; }
|
{ echo "autoheader failed to generate config.h.in" >&2; exit 1; }
|
||||||
|
|
||||||
$AUTOCONF || exit 1
|
$AUTOCONF || exit 1
|
||||||
test -f configure || \
|
test -f configure || \
|
||||||
{ echo "autoconf failed to generate configure" 2>&1; exit 1; }
|
{ echo "autoconf failed to generate configure" >&2; exit 1; }
|
||||||
|
|
||||||
# Workaround for Automake 1.5 to ensure that depcomp is distributed.
|
# Workaround for Automake 1.5 to ensure that depcomp is distributed.
|
||||||
if test "`$AUTOMAKE --version|awk '{print $NF;exit}'`" = '1.5' ; then
|
if test "`$AUTOMAKE --version|awk '{print $NF;exit}'`" = '1.5' ; then
|
||||||
@ -103,18 +103,18 @@ if test "`$AUTOMAKE --version|awk '{print $NF;exit}'`" = '1.5' ; then
|
|||||||
fi
|
fi
|
||||||
$AUTOMAKE -a
|
$AUTOMAKE -a
|
||||||
test -f Makefile.in || \
|
test -f Makefile.in || \
|
||||||
{ echo "automake failed to generate Makefile.in" 2>&1; exit 1; }
|
{ echo "automake failed to generate Makefile.in" >&2; exit 1; }
|
||||||
|
|
||||||
cd vfs/samba
|
cd vfs/samba
|
||||||
date -u >include/stamp-h.in
|
date -u >include/stamp-h.in
|
||||||
|
|
||||||
$AUTOHEADER
|
$AUTOHEADER
|
||||||
test -f include/config.h.in || \
|
test -f include/config.h.in || \
|
||||||
{ echo "autoheader failed to generate vfs/samba/include/config.h.in" 2>&1; exit 1; }
|
{ echo "autoheader failed to generate vfs/samba/include/config.h.in" >&2; exit 1; }
|
||||||
|
|
||||||
$AUTOCONF
|
$AUTOCONF
|
||||||
test -f configure || \
|
test -f configure || \
|
||||||
{ echo "autoconf failed to generate vfs/samba/configure" 2>&1; exit 1; }
|
{ echo "autoconf failed to generate vfs/samba/configure" >&2; exit 1; }
|
||||||
) || exit 1
|
) || exit 1
|
||||||
|
|
||||||
if test -x $srcdir/configure.mc; then
|
if test -x $srcdir/configure.mc; then
|
||||||
|
Loading…
Reference in New Issue
Block a user