diff options
author | Richard W.M. Jones <rjones@redhat.com> | 2011-07-21 17:00:48 +0100 |
---|---|---|
committer | Richard W.M. Jones <rjones@redhat.com> | 2011-07-27 15:04:51 +0100 |
commit | 556a74a4dac8afb31d016ea673bece55b09e8994 (patch) | |
tree | f72d55d86a22f97f920da57ce99cc0f2120a2269 | |
parent | 57f333e47f38020609b9acc7742da776289b34a5 (diff) | |
download | libguestfs-556a74a4dac8afb31d016ea673bece55b09e8994.tar.gz libguestfs-556a74a4dac8afb31d016ea673bece55b09e8994.tar.xz libguestfs-556a74a4dac8afb31d016ea673bece55b09e8994.zip |
build: Send failed Perl test configure output to config.log.
(cherry picked from commit 610642491a4846f45c7b233060ffde46f6ca09f0)
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index aadbe9fd..85cf463e 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 |