psss / rpms / libguestfs

Forked from rpms/libguestfs 5 years ago
Clone
Blob Blame History Raw
From 06711d7973ef583b9b95253229d6082a5afd8e08 Mon Sep 17 00:00:00 2001
From: Richard W.M. Jones <rjones@redhat.com>
Date: Sat, 16 Jun 2012 10:23:19 +0100
Subject: [PATCH 02/19] EPEL 5: Remove AS_ECHO_N for ancient autoconf.

---
 configure.ac |   26 +++++++++++++-------------
 1 files changed, 13 insertions(+), 13 deletions(-)

diff --git a/configure.ac b/configure.ac
index d5f12a4..4b71ebc 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1311,33 +1311,33 @@ echo
 echo    "Daemon .............................. $enable_daemon"
 echo    "Appliance ........................... $enable_appliance"
 echo    "QEMU ................................ $QEMU $QEMU_OPTIONS"
-AS_ECHO_N(["OCaml bindings ...................... "])
+echo -n "OCaml bindings ...................... "
 if test "x$HAVE_OCAML_TRUE" = "x"; then echo "yes"; else echo "no"; fi
-AS_ECHO_N(["Perl bindings ....................... "])
+echo -n "Perl bindings ....................... "
 if test "x$HAVE_PERL_TRUE" = "x"; then echo "yes"; else echo "no"; fi
-AS_ECHO_N(["Python bindings ..................... "])
+echo -n "Python bindings ..................... "
 if test "x$HAVE_PYTHON_TRUE" = "x"; then echo "yes"; else echo "no"; fi
-AS_ECHO_N(["Ruby bindings ....................... "])
+echo -n "Ruby bindings ....................... "
 if test "x$HAVE_RUBY_TRUE" = "x"; then echo "yes"; else echo "no"; fi
-AS_ECHO_N(["Java bindings ....................... "])
+echo -n "Java bindings ....................... "
 if test "x$HAVE_JAVA_TRUE" = "x"; then echo "yes"; else echo "no"; fi
-AS_ECHO_N(["Haskell bindings .................... "])
+echo -n "Haskell bindings .................... "
 if test "x$HAVE_HASKELL_TRUE" = "x"; then echo "yes"; else echo "no"; fi
-AS_ECHO_N(["PHP bindings ........................ "])
+echo -n "PHP bindings ........................ "
 if test "x$HAVE_PHP_TRUE" = "x"; then echo "yes"; else echo "no"; fi
-AS_ECHO_N(["Erlang bindings ..................... "])
+echo -n "Erlang bindings ..................... "
 if test "x$HAVE_ERLANG_TRUE" = "x"; then echo "yes"; else echo "no"; fi
 echo    "guestfish and C virt tools .......... yes"
-AS_ECHO_N(["Perl virt tools ..................... "])
+echo -n "Perl virt tools ..................... "
 if test "x$HAVE_TOOLS_TRUE" = "x"; then echo "yes"; else echo "no"; fi
-AS_ECHO_N(["OCaml virt tools .................... "])
+echo -n "OCaml virt tools .................... "
 if test "x$HAVE_OCAML_TRUE" = "x"; then echo "yes"; else echo "no"; fi
 echo "FUSE filesystem ..................... $enable_fuse"
-AS_ECHO_N(["gobject bindings .................... "])
+echo -n "gobject bindings .................... "
 if test "x$HAVE_GOBJECT_TRUE" = "x"; then echo "yes"; else echo "no"; fi
-AS_ECHO_N(["gobject introspection ............... "])
+echo -n "gobject introspection ............... "
 if test "x$HAVE_INTROSPECTION_TRUE" = "x"; then echo "yes"; else echo "no"; fi
-AS_ECHO_N(["GNU gettext for i18n ................ "])
+echo -n "GNU gettext for i18n ................ "
 if test "x$HAVE_GNU_GETTEXT_TRUE" = "x"; then echo "yes"; else echo "no"; fi
 echo
 echo "If any optional component is configured 'no' when you expected 'yes'"
-- 
1.7.4.1