From: Nick Bowler Date: Thu, 23 Jan 2014 03:04:38 +0000 (-0500) Subject: build: Remove call to AC_CONFIG_MACRO_DIR. X-Git-Url: https://git.draconx.ca/gitweb/liblbx.git/commitdiff_plain/bf1ea9667a3de66ed46e1b876ad3ce3ebba7e9b5 build: Remove call to AC_CONFIG_MACRO_DIR. This macro never did anything useful and should not be used. The new- fangled way is AC_CONFIG_MACRO_DIRS which might even work, but stick with the tried-and-true method for now. --- diff --git a/configure.ac b/configure.ac index 8a460a9..a53ad7c 100644 --- a/configure.ac +++ b/configure.ac @@ -8,7 +8,6 @@ AC_PREREQ([2.68]) AC_INIT([liblbx], [0.1], [toom-devel@lists.sourceforge.net]) AC_CONFIG_SRCDIR([src/lbx.c]) AC_CONFIG_HEADER([config.h]) -AC_CONFIG_MACRO_DIR([m4]) AM_INIT_AUTOMAKE([-Wall -Wno-portability foreign subdir-objects]) AM_SILENT_RULES([yes])