From 2aa7088a54fda0cd67f3ee2eaae44706b85435c2 Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Thu, 23 Feb 2012 16:47:56 +0000 Subject: [PATCH] Fix perldoc test in configure script. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index b4853f6..0185eba 100644 --- a/configure.ac +++ b/configure.ac @@ -101,7 +101,7 @@ fi dnl Check for POD (for manual pages). AC_CHECK_PROG(PERLDOC,perldoc,perldoc) -if test "x$PERLDOC" = "xno"; then +if test "x$PERLDOC" = "x"; then AC_MSG_ERROR([You must install the perldoc program]) fi -- 1.8.3.1