From 9f0c55cdbdea6472d55cb2500c249e14e15b6a36 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Mon, 8 Feb 2021 13:09:50 -0500 Subject: [PATCH] autotools: use top-level "m4" directory for macros. This makes autoreconf happy, and is what the upstream sample plugin does. --- Makefile.am | 2 ++ configure.ac.in | 1 + 2 files changed, 3 insertions(+) diff --git a/Makefile.am b/Makefile.am index f14cac8..ca39846 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,3 +1,5 @@ +ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS} + SUBDIRS = \ icons \ panel-plugin \ diff --git a/configure.ac.in b/configure.ac.in index 77d4466..4f09255 100644 --- a/configure.ac.in +++ b/configure.ac.in @@ -14,6 +14,7 @@ AC_COPYRIGHT([Copyright (c) 2021 Michael Orlitzky. All rights reserved.]) AC_INIT([xfce4-hdaps], [xfce4_hdaps_version()], [michael@orlitzky.com]) AC_PREREQ([2.50]) +AC_CONFIG_MACRO_DIRS([m4]) dnl *************************** dnl *** Initialize automake *** -- 2.43.2