summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Jones <rjones@redhat.com>2009-04-28 09:59:35 +0100
committerRichard Jones <rjones@redhat.com>2009-04-28 09:59:35 +0100
commit1d96b8bdb42e44049aa84d1daa3e5d835d525b03 (patch)
tree6506ccc02386f09999d01d1a422c2dad626d9ab3
parentb03ee3675bed8d739ae722ed8c030ae02b3cb0ed (diff)
downloadlibguestfs-1d96b8bdb42e44049aa84d1daa3e5d835d525b03.tar.gz
libguestfs-1d96b8bdb42e44049aa84d1daa3e5d835d525b03.tar.xz
libguestfs-1d96b8bdb42e44049aa84d1daa3e5d835d525b03.zip
Fix perl hanging during configure (thanks to Luciano Miguel Ferreira Rocha).
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index a8980400..67f763b6 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