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-21 17:00:48 +0100 |
commit | 610642491a4846f45c7b233060ffde46f6ca09f0 (patch) | |
tree | 17d2e14f89a5d217a7f8a7b69860e9624e57a24d | |
parent | 806b6e01506dea4eae68ac3e468d9398d63cafcb (diff) | |
download | libguestfs-610642491a4846f45c7b233060ffde46f6ca09f0.tar.gz libguestfs-610642491a4846f45c7b233060ffde46f6ca09f0.tar.xz libguestfs-610642491a4846f45c7b233060ffde46f6ca09f0.zip |
build: Send failed Perl test configure output to config.log.
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 24de0926..ed88a2ec 100644 --- a/configure.ac +++ b/configure.ac @@ -781,7 +781,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 |