From: Richard W.M. Jones Date: Thu, 21 Jul 2011 16:00:48 +0000 (+0100) Subject: build: Send failed Perl test configure output to config.log. X-Git-Tag: 1.10.6~7 X-Git-Url: http://git.annexia.org/?a=commitdiff_plain;h=556a74a4dac8afb31d016ea673bece55b09e8994;p=libguestfs.git build: Send failed Perl test configure output to config.log. (cherry picked from commit 610642491a4846f45c7b233060ffde46f6ca09f0) --- diff --git a/configure.ac b/configure.ac index aadbe9f..85cf463 100644 --- a/configure.ac +++ b/configure.ac @@ -798,7 +798,7 @@ AS_IF([test "x$PERL" != "xno"], missing_perl_modules=no for pm in Pod::Usage Getopt::Long Sys::Virt Data::Dumper Locale::TextDomain Win::Hivex Win::Hivex::Regedit String::ShellQuote; do AC_MSG_CHECKING([for $pm]) - if ! $PERL -M$pm -e1 >/dev/null 2>&1; then + if ! $PERL -M$pm -e1 >&AS_MESSAGE_LOG_FD 2>&1; then AC_MSG_RESULT([no]) missing_perl_modules=yes else