From dd75ea7420b8a533d6923bb962b7efea42fa60b6 Mon Sep 17 00:00:00 2001 From: Erik Larsson Date: Wed, 3 Mar 2021 16:39:45 +0200 Subject: [PATCH] configure.ac: Fix obsolete 2-argument AM_INIT_AUTOMAKE invocation. The 2-argument form has been replaced with fetching the package/version information from autoconf (AC_INIT). Instead the 1-argument form takes a list of automake options but we currently do not need to specify any. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 0b483c20..7d8324f5 100644 --- a/configure.ac +++ b/configure.ac @@ -33,7 +33,7 @@ AC_CANONICAL_HOST AC_CANONICAL_TARGET # Automake -AM_INIT_AUTOMAKE([${PACKAGE_NAME}], [${PACKAGE_VERSION}]) +AM_INIT_AUTOMAKE([]) AC_CONFIG_HEADERS([config.h]) AC_CONFIG_MACRO_DIR([m4]) AM_MAINTAINER_MODE