From d6dfc4caa46a1b70b1107171253c4f7863a3c6fd Mon Sep 17 00:00:00 2001 From: Will Estes Date: Fri, 14 Nov 2014 08:29:44 -0500 Subject: added back call to AC_CONFIG_AUX_DIR. In an effort to reduce top level directory clutter, reintroduced the call to AC_CONFIG_AUX_DIR. Moved the call to LT_INIT to after that call so configure will be able to find its files. --- configure.ac | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index 977ea3a..2324646 100644 --- a/configure.ac +++ b/configure.ac @@ -26,14 +26,15 @@ AC_INIT([the fast lexical analyser generator], [2.6.0-pre], [flex-help@lists.sourceforge.net], [flex]) -LT_INIT -SHARED_VERSION_INFO="2:0:0" -AC_SUBST(SHARED_VERSION_INFO) AC_CONFIG_SRCDIR([src/scan.l]) +AC_CONFIG_AUX_DIR([build-aux]) AM_INIT_AUTOMAKE([gnu check-news std-options dist-bzip2 dist-xz parallel-tests 1.14.1]) AC_CONFIG_HEADER([src/config.h]) AC_CONFIG_LIBOBJ_DIR([lib]) AC_CONFIG_MACRO_DIR([m4]) +LT_INIT +SHARED_VERSION_INFO="2:0:0" +AC_SUBST(SHARED_VERSION_INFO) # checks for programs -- cgit v1.2.1