summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorMichael Elkins <me@sigpipe.org>2012-12-27 18:56:02 -0800
committerMichael Elkins <me@sigpipe.org>2012-12-27 18:56:02 -0800
commit5f3dc8dd67617495edb976ea9a3c9662390b34a9 (patch)
tree392b6960a9db68a49973de9b4c13af4bf6a0daec /configure.ac
parent027660d5045b7a7939e03dc4cf101454f8d6e85b (diff)
avoid using m4_esyscmd_s() since it is not available in older versions of autoconf. use m4_esyscmd() and m4_translit() to whack the newline instead.
see #3613
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac3
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 3a679ba0..34d0dccc 100644
--- a/configure.ac
+++ b/configure.ac
@@ -3,7 +3,8 @@ dnl Process this file with autoconf to produce a configure script.
dnl !!! WHEN ADDING NEW CONFIGURE TESTS, PLEASE ADD CODE TO MAIN.C !!!
dnl !!! TO DUMP THEIR RESULTS WHEN MUTT -V IS CALLED !!!
-AC_INIT([mutt],[m4_esyscmd_s(cat VERSION)])
+AC_INIT([mutt],[m4_translit(m4_esyscmd(cat VERSION),`
+')])
AC_CONFIG_SRCDIR(mutt.h)
AM_INIT_AUTOMAKE
AC_CONFIG_HEADERS([config.h])