build: Fix checks for pod2man

Previous commit had two obviously broken parts.
This commit is contained in:
Colin Walters
2012-11-18 13:26:18 -05:00
committed by Bastien Nocera
parent 0aaff3a6c6
commit 870a7a8361

View File

@ -50,8 +50,8 @@ AC_MSG_RESULT([$has_pam])
AC_CHECK_PROG([XMLLINT], [xmllint], [xmllint])
AC_CHECK_PROG([XSLTPROC], [xsltproc], [xsltproc])
AC_CHECK_PROG([POD2MAN], [pod2man], [xsltproc])
AM_CONDITIONAL(BUILD_MAN, test "$POD2MAN" != "x")
AC_CHECK_PROG([POD2MAN], [pod2man], [pod2man])
AM_CONDITIONAL(BUILD_MAN, test x"$POD2MAN" != "x")
GTK_DOC_CHECK([1.3])