mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-22 20:36:50 +03:00
* acinclude.m4 (MC_EXTFS_CHECKS): Fix redirection to /dev/null.
This commit is contained in:
parent
6bd6b1deb0
commit
077e1117ff
@ -1,3 +1,7 @@
|
|||||||
|
2003-01-23 Pavel Roskin <proski@gnu.org>
|
||||||
|
|
||||||
|
* acinclude.m4 (MC_EXTFS_CHECKS): Fix redirection to /dev/null.
|
||||||
|
|
||||||
2003-01-22 Pavel Roskin <proski@gnu.org>
|
2003-01-22 Pavel Roskin <proski@gnu.org>
|
||||||
|
|
||||||
* configure.in: Bump version to 4.6.0-pre3a.
|
* configure.in: Bump version to 4.6.0-pre3a.
|
||||||
|
@ -42,7 +42,7 @@ AC_DEFUN([MC_EXTFS_CHECKS], [
|
|||||||
AC_PATH_PROG([UNZIP], [unzip], [/usr/bin/unzip])
|
AC_PATH_PROG([UNZIP], [unzip], [/usr/bin/unzip])
|
||||||
AC_CACHE_CHECK([for zipinfo code in unzip], [mc_cv_have_zipinfo],
|
AC_CACHE_CHECK([for zipinfo code in unzip], [mc_cv_have_zipinfo],
|
||||||
[mc_cv_have_zipinfo=no
|
[mc_cv_have_zipinfo=no
|
||||||
if $UNZIP -Z </dev/null 2>&1 >/dev/null; then
|
if $UNZIP -Z </dev/null >/dev/null 2>&1; then
|
||||||
mc_cv_have_zipinfo=yes
|
mc_cv_have_zipinfo=yes
|
||||||
fi])
|
fi])
|
||||||
if test "x$mc_cv_have_zipinfo" = xyes; then
|
if test "x$mc_cv_have_zipinfo" = xyes; then
|
||||||
|
Loading…
Reference in New Issue
Block a user