summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWill Estes <westes575@gmail.com>2014-11-14 08:29:44 -0500
committerWill Estes <westes575@gmail.com>2014-11-14 08:29:44 -0500
commitd6dfc4caa46a1b70b1107171253c4f7863a3c6fd (patch)
tree97d7467854631a24d1fd4ab478b6e8b2099d18b5
parentf4ec87b6d926cfe635b480dbeec71b3b489dbb02 (diff)
downloadflex-git-d6dfc4caa46a1b70b1107171253c4f7863a3c6fd.tar.gz
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.
-rw-r--r--configure.ac7
1 files 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