From: milloni Date: Tue, 12 Mar 2019 16:22:15 +0000 (+0000) Subject: Makefile.am: add include dir for AC_CONFIG_MACRO_DIR to work X-Git-Tag: xkbcommon-0.9.0~29^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=10311c95ef8009bcf464c221c6c2de53a0384329;p=platform%2Fupstream%2Flibxkbcommon.git Makefile.am: add include dir for AC_CONFIG_MACRO_DIR to work With older versions of autotools, one needs to add this line to Makefile.am. From the autoconf docs: "Note that if you use aclocal from Automake to generate aclocal.m4, you must also set ACLOCAL_AMFLAGS = -I dir in your top-level Makefile.am". [1] I couldn't build with autoconf 2.68 without this. [1] https://www.gnu.org/software/autoconf/manual/autoconf-2.65/html_node/Input.html Signed-off-by: milloni --- diff --git a/Makefile.am b/Makefile.am index b19546e..ac6d909 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,6 +1,8 @@ pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = xkbcommon.pc +ACLOCAL_AMFLAGS = -I m4 + EXTRA_DIST = \ scripts/makeheader \ scripts/makekeys \