diff options
author | Vladimir Volovich <vvv@vsu.ru> | 2008-03-27 13:18:59 +0000 |
---|---|---|
committer | Vladimir Volovich <vvv@vsu.ru> | 2008-03-27 13:18:59 +0000 |
commit | 479fa2d45c9efa8c3affecccd4a0d44d73147eff (patch) | |
tree | 9fcc5460d33a156f8e406a9009b124da3e098e7d /Build/source/utils/xindy/configure.ac | |
parent | 7c39353665eb8c4c212fe37e60309021f21d2751 (diff) |
configure.ac: changed AC_PROG_LEX to AM_PROG_LEX, as recommended by the automake manual (section 8.8, Yacc and Lex support)
this uses the "missing" script if lex is not found.
added the pre-generated tex2xindy.c to the distribution.
git-svn-id: svn://tug.org/texlive/trunk@7188 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/utils/xindy/configure.ac')
-rw-r--r-- | Build/source/utils/xindy/configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Build/source/utils/xindy/configure.ac b/Build/source/utils/xindy/configure.ac index cc176de81cb..ab53deff116 100644 --- a/Build/source/utils/xindy/configure.ac +++ b/Build/source/utils/xindy/configure.ac @@ -30,8 +30,8 @@ AM_MAINTAINER_MODE # Checks for programs. AC_PROG_CC -AC_PROG_LEX -test "x$LEX" != "x:" || AC_MSG_ERROR([flex or lex is required, but not found]) +AM_PROG_LEX +dnl test "x$LEX" != "x:" || AC_MSG_ERROR([flex or lex is required, but not found]) AC_PROG_INSTALL AC_PROG_MAKE_SET |