mirror of
https://github.com/PartialVolume/shredos.x86_64.git
synced 2026-02-20 09:35:26 +00:00
49 lines
1.5 KiB
Diff
49 lines
1.5 KiB
Diff
From 99b466f5448951a83a0d763e633906b28c30fc0a 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>
|
|
---
|
|
configure.ac | 2 +-
|
|
libmonit/configure.ac | 2 +-
|
|
2 files changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/configure.ac b/configure.ac
|
|
index b4f2a14c..41a8c1a5 100644
|
|
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -8,7 +8,7 @@ AC_PREREQ([2.53])
|
|
# Example: 5.0_beta2
|
|
AC_INIT([monit], [5.34.3], [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 800ebf83..03101a6b 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.47.0
|
|
|