From: Michael Orlitzky Date: Mon, 8 Feb 2021 18:09:50 +0000 (-0500) Subject: autotools: use top-level "m4" directory for macros. X-Git-Tag: v1.0.3~4 X-Git-Url: http://gitweb.michael.orlitzky.com/?p=xfce4-hdaps.git;a=commitdiff_plain;h=9f0c55cdbdea6472d55cb2500c249e14e15b6a36 autotools: use top-level "m4" directory for macros. This makes autoreconf happy, and is what the upstream sample plugin does. --- 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 ***