summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThien-Thi Nguyen <ttn@gnu.org>2021-03-08 05:01:58 -0500
committerThien-Thi Nguyen <ttn@gnu.org>2021-03-08 05:01:58 -0500
commitc43f2527c1dc2f6062ba126fb1cf67ccf5f56ef8 (patch)
tree1b103bf7b48f636606ee0791d220ac024de842b3
parent8b965ad7ba1b213f9227099789def30ece367f24 (diff)
downloadguile-c43f2527c1dc2f6062ba126fb1cf67ccf5f56ef8.tar.gz
[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.
-rw-r--r--guile-readline/configure.ac6
1 files 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)