From 2a5b1cfe94a26fb9cef41b42c302ceeb2d810af3 Mon Sep 17 00:00:00 2001 From: Philippe Proulx Date: Mon, 29 Feb 2016 13:13:36 -0500 Subject: [PATCH] configure.ac: macros with no arguments do not need () Signed-off-by: Philippe Proulx Signed-off-by: Mathieu Desnoyers --- configure.ac | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/configure.ac b/configure.ac index 312a1432..3e752087 100644 --- a/configure.ac +++ b/configure.ac @@ -422,14 +422,14 @@ AC_CONFIG_LINKS([ AC_OUTPUT AS_ECHO(["m4_bpatsubst(V_NAME, ["], [\\"])"]) -AS_ECHO() +AS_ECHO AS_ECHO(["m4_bpatsubst(V_DESC, ["], [\\"])"]) # Report on the configuration options -AS_ECHO() +AS_ECHO AS_ECHO(["LTTng-UST will be built with the following options:"]) -AS_ECHO() +AS_ECHO AS_ECHO_N(["Java agent (JUL support): "]) AS_IF([test "x$java_agent_jul" = "xyes"], [AS_ECHO(["Enabled"])], [AS_ECHO(["Disabled"])]) @@ -450,7 +450,7 @@ AS_ECHO(["Architecture: $host_cpu"]) AS_ECHO_N(["Efficient unaligned memory access: "]) AS_IF([test "x$NO_UNALIGNED_ACCESS" != "x1"], [AS_ECHO(["yes"])], [AS_IF([test "x$UNSUPPORTED_ARCH" != "x1"], [AS_ECHO(["no"])], [AS_ECHO(["unknown"])])]) AS_IF([test "x$UNSUPPORTED_ARCH" = "x1"], [AC_MSG_WARN([Your architecture ($host_cpu) is unsupported, using safe default of no unaligned access])]) -AS_ECHO() +AS_ECHO AS_ECHO(["Type 'make' to compile."]) -- 2.34.1