* configure.in: fixed wrong use of AC_MSG_RESULT inside

AC_CACHE_VAL
This commit is contained in:
Pavel Roskin 2000-09-18 01:55:31 +00:00
parent 93de802680
commit b0ec76f78a
2 changed files with 8 additions and 3 deletions

View File

@ -1,5 +1,8 @@
2000-09-17 Pavel Roskin <proski@gnu.org> 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" * Make.common.in: Added the "dvi" target for "make distcheck"
to go further to go further
* doc-gnome/C/Makefile.in: converted to ... * doc-gnome/C/Makefile.in: converted to ...

View File

@ -519,19 +519,21 @@ if $HAVE_nroff; then
if test $? = 0 if test $? = 0
then then
ac_cv_nroff_tascii=" -Tlatin1" ac_cv_nroff_tascii=" -Tlatin1"
AC_MSG_RESULT(yes)
else else
nroff -Tascii < /dev/null > /dev/null 2>&1 /dev/null nroff -Tascii < /dev/null > /dev/null 2>&1 /dev/null
if test $? = 0 if test $? = 0
then then
ac_cv_nroff_tascii=" -Tascii" ac_cv_nroff_tascii=" -Tascii"
AC_MSG_RESULT(yes)
else else
ac_cv_nroff_tascii="" ac_cv_nroff_tascii=""
AC_MSG_RESULT(no)
fi fi
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 fi
TROFFASCII="$ac_cv_nroff_tascii" TROFFASCII="$ac_cv_nroff_tascii"
AC_SUBST(TROFFASCII) AC_SUBST(TROFFASCII)