From 951ea0e189f051c85de14c508d90d3bad0f1ca7a Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Wed, 24 Nov 2010 10:00:06 +0000 Subject: [PATCH] build: virt-make-fs requires String::ShellQuote, add to configure. --- README | 2 ++ configure.ac | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/README b/README index fe3a745..c2a75b1 100644 --- a/README +++ b/README @@ -101,6 +101,8 @@ bindings - (Optional) Perl Test::More module (from perl Test::Simple). +- (Optional) Perl String::ShellQuote module. + - (Optional, but highly recommended) perl-libintl for translating perl code. - (Optional) po4a for translating manpages and POD files. diff --git a/configure.ac b/configure.ac index ac1ec10..48d4240 100644 --- a/configure.ac +++ b/configure.ac @@ -806,7 +806,7 @@ dnl Check for Perl modules needed by Perl virt tools (virt-df, etc.) 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; do + 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 AC_MSG_RESULT([no]) -- 1.8.3.1