summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard W.M. Jones <rjones@redhat.com>2010-11-24 10:00:06 +0000
committerRichard W.M. Jones <rjones@redhat.com>2010-11-24 11:29:10 +0000
commit951ea0e189f051c85de14c508d90d3bad0f1ca7a (patch)
tree532c39b977ac1167ca0479d098711c146fd8b5b9
parentc6478d6a01c210ef19735429d7602e3458733e25 (diff)
downloadlibguestfs-951ea0e189f051c85de14c508d90d3bad0f1ca7a.tar.gz
libguestfs-951ea0e189f051c85de14c508d90d3bad0f1ca7a.tar.xz
libguestfs-951ea0e189f051c85de14c508d90d3bad0f1ca7a.zip
build: virt-make-fs requires String::ShellQuote, add to configure.
-rw-r--r--README2
-rw-r--r--configure.ac2
2 files changed, 3 insertions, 1 deletions
diff --git a/README b/README
index fe3a745c..c2a75b1d 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 ac1ec105..48d42406 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])