From c43f2527c1dc2f6062ba126fb1cf67ccf5f56ef8 Mon Sep 17 00:00:00 2001 From: Thien-Thi Nguyen Date: Mon, 8 Mar 2021 05:01:58 -0500 Subject: [PATCH] [build slog] Rework m4-quoting for AC_INIT form This is adopted verbatim from the autoupdate (GNU Autoconf 2.71) suggestion. * guile-readline/configure.ac (AC_INIT): Add m4-quotes to first two args; remove inner m4-quotes; remove extraneous newlines. --- guile-readline/configure.ac | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/guile-readline/configure.ac b/guile-readline/configure.ac index b03e5467c..fd49cfd65 100644 --- a/guile-readline/configure.ac +++ b/guile-readline/configure.ac @@ -2,10 +2,8 @@ AC_PREREQ(2.50) dnl Don't use "echo -n", which is not portable (e.g., not available on dnl MacOS X). Instead, use `patsubst' to remove the newline. -AC_INIT(guile-readline, - patsubst(m4_esyscmd(. ../GUILE-VERSION && echo ${GUILE_VERSION}), [ -]), - [bug-guile@gnu.org]) +AC_INIT([guile-readline],[patsubst(m4_esyscmd(. ../GUILE-VERSION && echo ${GUILE_VERSION}), +)],[bug-guile@gnu.org]) AC_CONFIG_AUX_DIR([.]) AC_CONFIG_SRCDIR(readline.c)