mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-08 00:20:38 -09:00
Signed-off-by: Daniel Crowe <daniel.crowe@maxmine.com.au> Signed-off-by: Julien Olivain <ju.o@free.fr>
51 lines
1.6 KiB
Diff
51 lines
1.6 KiB
Diff
From 347e94149e3caa038d66ee34d79bdb312d36cc49 Mon Sep 17 00:00:00 2001
|
|
From: Jens Maus <mail@jens-maus.de>
|
|
Date: Fri, 22 Sep 2023 21:32:18 +0200
|
|
Subject: [PATCH] configure.ac: fixes missing config macro dir
|
|
|
|
This adds the config dir to the AC_CONFIG_MACRO_DIRS in configure.ac
|
|
so that m4 macros are properly loaded upon autoreconf use.
|
|
|
|
Upstream: N/A (specific to buildroot)
|
|
Signed-off-by: Jens Maus <mail@jens-maus.de>
|
|
[Dario: make the patch to be applied with fuzz factor 0]
|
|
Signed-off-by: Dario Binacchi <dario.binacchi@amarulasolutions.com>
|
|
[Bernd: rebased against 5.34.2]
|
|
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
|
|
[Daniel: rebased against 5.35.2]
|
|
Signed-off-by: Daniel Crowe <daniel.crowe@maxmine.com.au>
|
|
---
|
|
configure.ac | 2 +-
|
|
libmonit/configure.ac | 2 +-
|
|
2 files changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/configure.ac b/configure.ac
|
|
index 3a6cf4e6..477cdbaa 100644
|
|
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -8,7 +8,7 @@ AC_PREREQ([2.53])
|
|
# Example: 5.0_beta2
|
|
AC_INIT([monit], [5.35.2], [monit-general@nongnu.org])
|
|
AC_CONFIG_AUX_DIR(config)
|
|
-AC_CONFIG_MACRO_DIR([m4])
|
|
+AC_CONFIG_MACRO_DIRS([m4 config])
|
|
AM_INIT_AUTOMAKE
|
|
AC_CONFIG_SRCDIR([src/monit.c])
|
|
AC_CONFIG_SUBDIRS([libmonit])
|
|
diff --git a/libmonit/configure.ac b/libmonit/configure.ac
|
|
index 84c1217c..c9d10fe2 100644
|
|
--- a/libmonit/configure.ac
|
|
+++ b/libmonit/configure.ac
|
|
@@ -4,7 +4,7 @@ AC_PREREQ([2.53])
|
|
|
|
AC_INIT([libmonit], [1.0], [monit-dev@tildeslash.com])
|
|
AC_CONFIG_AUX_DIR(config)
|
|
-AC_CONFIG_MACRO_DIR([m4])
|
|
+AC_CONFIG_MACRO_DIRS([m4 config])
|
|
AM_INIT_AUTOMAKE
|
|
AC_CONFIG_SRCDIR([src])
|
|
|
|
--
|
|
2.43.0
|
|
|