psss / rpms / libguestfs

Forked from rpms/libguestfs 5 years ago
Clone

Blame 0006-EPEL-5-Remove-AS_ECHO_N-for-ancient-autoconf.patch

c04646d
From 120acb40d674957a3b4cfe8a88877430cdc50493 Mon Sep 17 00:00:00 2001
89d86ed
From: Richard W.M. Jones <rjones@redhat.com>
89d86ed
Date: Sat, 16 Jun 2012 10:23:19 +0100
0a1dbf2
Subject: [PATCH 06/38] EPEL 5: Remove AS_ECHO_N for ancient autoconf.
89d86ed
89d86ed
---
b03e9cf
 configure.ac |   28 ++++++++++++++--------------
b03e9cf
 1 files changed, 14 insertions(+), 14 deletions(-)
89d86ed
89d86ed
diff --git a/configure.ac b/configure.ac
b03e9cf
index c1388ff..38998ee 100644
89d86ed
--- a/configure.ac
89d86ed
+++ b/configure.ac
b03e9cf
@@ -1525,33 +1525,33 @@ echo       "Appliance ........................... $enable_appliance"
b03e9cf
 echo       "QEMU ................................ $QEMU $QEMU_OPTIONS"
b03e9cf
 echo       "guestfish and C-based virt tools .... yes"
b03e9cf
 echo       "FUSE filesystem ..................... $enable_fuse"
b03e9cf
-AS_ECHO_N(["GNU gettext for i18n ................ "])
b03e9cf
+echo -n "GNU gettext for i18n ................ "
b03e9cf
 if test "x$HAVE_GNU_GETTEXT_TRUE" = "x"; then echo "yes"; else echo "no"; fi
89d86ed
-AS_ECHO_N(["OCaml bindings ...................... "])
89d86ed
+echo -n "OCaml bindings ...................... "
89d86ed
 if test "x$HAVE_OCAML_TRUE" = "x"; then echo "yes"; else echo "no"; fi
b03e9cf
-AS_ECHO_N(["OCaml-based virt tools .............. "])
b03e9cf
+echo -n "OCaml-based virt tools .............. "
b03e9cf
 if test "x$HAVE_OCAML_TRUE" = "x"; then echo "yes"; else echo "no"; fi
89d86ed
-AS_ECHO_N(["Perl bindings ....................... "])
89d86ed
+echo -n "Perl bindings ....................... "
89d86ed
 if test "x$HAVE_PERL_TRUE" = "x"; then echo "yes"; else echo "no"; fi
b03e9cf
-AS_ECHO_N(["Perl-based virt tools ............... "])
b03e9cf
+echo -n "Perl-based virt tools ............... "
b03e9cf
 if test "x$HAVE_TOOLS_TRUE" = "x"; then echo "yes"; else echo "no"; fi
89d86ed
-AS_ECHO_N(["Python bindings ..................... "])
89d86ed
+echo -n "Python bindings ..................... "
89d86ed
 if test "x$HAVE_PYTHON_TRUE" = "x"; then echo "yes"; else echo "no"; fi
89d86ed
-AS_ECHO_N(["Ruby bindings ....................... "])
89d86ed
+echo -n "Ruby bindings ....................... "
89d86ed
 if test "x$HAVE_RUBY_TRUE" = "x"; then echo "yes"; else echo "no"; fi
89d86ed
-AS_ECHO_N(["Java bindings ....................... "])
89d86ed
+echo -n "Java bindings ....................... "
89d86ed
 if test "x$HAVE_JAVA_TRUE" = "x"; then echo "yes"; else echo "no"; fi
89d86ed
-AS_ECHO_N(["Haskell bindings .................... "])
89d86ed
+echo -n "Haskell bindings .................... "
89d86ed
 if test "x$HAVE_HASKELL_TRUE" = "x"; then echo "yes"; else echo "no"; fi
89d86ed
-AS_ECHO_N(["PHP bindings ........................ "])
89d86ed
+echo -n "PHP bindings ........................ "
89d86ed
 if test "x$HAVE_PHP_TRUE" = "x"; then echo "yes"; else echo "no"; fi
89d86ed
-AS_ECHO_N(["Erlang bindings ..................... "])
89d86ed
+echo -n "Erlang bindings ..................... "
89d86ed
 if test "x$HAVE_ERLANG_TRUE" = "x"; then echo "yes"; else echo "no"; fi
b03e9cf
-AS_ECHO_N(["Lua bindings ........................ "])
b03e9cf
+echo -n "Lua bindings ........................ "
b03e9cf
 if test "x$HAVE_LUA_TRUE" = "x"; then echo "yes"; else echo "no"; fi
89d86ed
-AS_ECHO_N(["gobject bindings .................... "])
89d86ed
+echo -n "gobject bindings .................... "
89d86ed
 if test "x$HAVE_GOBJECT_TRUE" = "x"; then echo "yes"; else echo "no"; fi
89d86ed
-AS_ECHO_N(["gobject introspection ............... "])
89d86ed
+echo -n "gobject introspection ............... "
89d86ed
 if test "x$HAVE_INTROSPECTION_TRUE" = "x"; then echo "yes"; else echo "no"; fi
89d86ed
 echo
89d86ed
 echo "If any optional component is configured 'no' when you expected 'yes'"
89d86ed
-- 
89d86ed
1.7.4.1
89d86ed