From: Richard W.M. Jones Date: Fri, 5 Aug 2011 09:31:03 +0000 (+0100) Subject: configure: Fix info about virt-resize when OCaml bindings are disabled. X-Git-Tag: 1.12.3~4 X-Git-Url: http://git.annexia.org/?a=commitdiff_plain;h=561e115b9b32d86d4ecd3afda99e861441d84763;p=libguestfs.git configure: Fix info about virt-resize when OCaml bindings are disabled. (cherry picked from commit e1c6d1738a2b9123dd08fb4ecff8176daf558f35) --- diff --git a/configure.ac b/configure.ac index 1a24454..1c47b16 100644 --- a/configure.ac +++ b/configure.ac @@ -884,7 +884,7 @@ echo "guestfish and C virt tools .......... yes" echo -n "Perl virt tools ..................... " if test "x$HAVE_TOOLS_TRUE" = "x"; then echo "yes"; else echo "no"; fi echo -n "virt-resize ......................... " -if test "x$HAVE_OCAML" = "x" && test "x$HAVE_OCAML_PCRE" = "x"; then echo "yes"; else echo "no"; fi +if test "x$HAVE_OCAML_TRUE" = "x" && test "x$HAVE_OCAML_PCRE_TRUE" = "x"; then echo "yes"; else echo "no"; fi echo "FUSE filesystem ..................... $enable_fuse" echo echo "If any optional component is configured 'no' when you expected 'yes'"