mirror of https://github.com/MidnightCommander/mc
* configure.in: fixed wrong use of AC_MSG_RESULT inside
AC_CACHE_VAL
This commit is contained in:
parent
93de802680
commit
b0ec76f78a
|
@ -1,5 +1,8 @@
|
|||
2000-09-17 Pavel Roskin <proski@gnu.org>
|
||||
|
||||
* configure.in: fixed wrong use of AC_MSG_RESULT inside
|
||||
AC_CACHE_VAL
|
||||
|
||||
* Make.common.in: Added the "dvi" target for "make distcheck"
|
||||
to go further
|
||||
* doc-gnome/C/Makefile.in: converted to ...
|
||||
|
|
|
@ -519,19 +519,21 @@ if $HAVE_nroff; then
|
|||
if test $? = 0
|
||||
then
|
||||
ac_cv_nroff_tascii=" -Tlatin1"
|
||||
AC_MSG_RESULT(yes)
|
||||
else
|
||||
nroff -Tascii < /dev/null > /dev/null 2>&1 /dev/null
|
||||
if test $? = 0
|
||||
then
|
||||
ac_cv_nroff_tascii=" -Tascii"
|
||||
AC_MSG_RESULT(yes)
|
||||
else
|
||||
ac_cv_nroff_tascii=""
|
||||
AC_MSG_RESULT(no)
|
||||
fi
|
||||
fi
|
||||
])
|
||||
if test "x$ac_cv_nroff_tascii" = x; then
|
||||
AC_MSG_RESULT(no)
|
||||
else
|
||||
AC_MSG_RESULT([yes,$ac_cv_nroff_tascii])
|
||||
fi
|
||||
fi
|
||||
TROFFASCII="$ac_cv_nroff_tascii"
|
||||
AC_SUBST(TROFFASCII)
|
||||
|
|
Loading…
Reference in New Issue