From f92c3446f2052a59d1e6a28f1bc7cec278cb1e48 Mon Sep 17 00:00:00 2001 From: Guus Sliepen Date: Wed, 15 Jul 2015 15:12:53 +0200 Subject: [PATCH] Use AC_CONFIG_MACRO_DIR() instead of _DIRS(). The former is guaranteed to work with autoconf 2.58 and later, and we don't have multiple m4 directories anyway. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index f045798d..04f16bf6 100644 --- a/configure.ac +++ b/configure.ac @@ -6,7 +6,7 @@ AC_CONFIG_SRCDIR([src/tincd.c]) AC_GNU_SOURCE AM_INIT_AUTOMAKE([std-options subdir-objects -Wall]) AC_CONFIG_HEADERS([config.h]) -AC_CONFIG_MACRO_DIRS([m4]) +AC_CONFIG_MACRO_DIR([m4]) # Enable GNU extensions. # Define this here, not in acconfig's @TOP@ section, since definitions -- 2.20.1