From 1ba8ce2e6926d673e0d3917709a3e9b712ff5d8b Mon Sep 17 00:00:00 2001 From: Steve Youngs Date: Tue, 28 May 2019 22:27:24 +1000 Subject: [PATCH] Amazing the difference a paren can make, including fix my last commit. * m4/sxe-libc.m4 (SXE_CHECK_LIBC_VERSION): Add missing paren. Signed-off-by: Steve Youngs --- m4/sxe-libc.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/m4/sxe-libc.m4 b/m4/sxe-libc.m4 index 2a68829..30a351f 100644 --- a/m4/sxe-libc.m4 +++ b/m4/sxe-libc.m4 @@ -127,7 +127,7 @@ AC_DEFUN([SXE_CHECK_LIBC_VERSION], [dnl #include int main(void) { puts (gnu_get_libc_version()); return 0; }]])], [dnl libc_version=`./conftest`], [libc_version=""], - [AC_MSG_WARN([Cross-compiling? Good luck. Let us know how it goes.])] + [AC_MSG_WARN([Cross-compiling? Good luck. Let us know how it goes.])]) if test -f /etc/os-release; then source /etc/os-release libc_version="GNU libc $libc_version (${PRETTY_NAME})" -- 2.25.1