From 1d96b8bdb42e44049aa84d1daa3e5d835d525b03 Mon Sep 17 00:00:00 2001 From: Richard Jones Date: Tue, 28 Apr 2009 09:59:35 +0100 Subject: [PATCH] Fix perl hanging during configure (thanks to Luciano Miguel Ferreira Rocha). --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index a898040..67f763b 100644 --- a/configure.ac +++ b/configure.ac @@ -186,7 +186,7 @@ dnl test the Perl bindings. missing_perl_modules=no for pm in Test::More Test::Pod Test::Pod::Coverage ExtUtils::MakeMaker; do AC_MSG_CHECKING([for $pm]) - if ! perl -M$pm >/dev/null 2>&1; then + if ! perl -M$pm -e1 >/dev/null 2>&1; then AC_MSG_RESULT([no]) missing_perl_modules=yes else -- 1.8.3.1