From a873151c1f696045845d90f99069703bf78c87f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomasz=20K=C5=82oczko?= Date: Thu, 9 Nov 2023 11:44:02 +0000 Subject: [PATCH] add missing `AC_CONFIG_MACRO_DIR(m4)` aclocal macro MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Without that patch is not possible to initialize source tree using standard `autoreconf -fiv`. Missiang AC_CONFIG_MACRO_DIR(m4) call adds path to project local aclocal macros. Signed-off-by: Tomasz Kłoczko --- configure.ac | 1 + 1 file changed, 1 insertion(+) diff --git a/configure.ac b/configure.ac index a8d736982dc..9d7f09cffb0 100644 --- a/configure.ac +++ b/configure.ac @@ -21,6 +21,7 @@ ### https://www.r-project.org/Licenses/ AC_PREREQ(2.69) +AC_CONFIG_MACRO_DIR([m4]) ## We want to get the version number from file 'VERSION' (rather than ## specifying the version info in 'configure.ac'. Hence, we need a bit