From 870a7a836197d8e2054f94ad95b6463616990c25 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Sun, 18 Nov 2012 13:26:18 -0500 Subject: [PATCH] build: Fix checks for pod2man Previous commit had two obviously broken parts. --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 00250f4..22d9a67 100644 --- a/configure.ac +++ b/configure.ac @@ -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])