diff options
author | Vladimir Volovich <vvv@vsu.ru> | 2008-03-26 16:13:09 +0000 |
---|---|---|
committer | Vladimir Volovich <vvv@vsu.ru> | 2008-03-26 16:13:09 +0000 |
commit | df5a68d2ee5f8dc2c8344a5dd71009ba6e221dcf (patch) | |
tree | 21f0f7cc53033ae96f2aa4e47d8cc8e89103cfb6 /Build/source/utils/xindy/configure.ac | |
parent | 83b9d74037930bd0ad6046bdf8b8b82eb7521cb2 (diff) |
move the test for "LEX is not found" right after AC_PROG_LEX
git-svn-id: svn://tug.org/texlive/trunk@7167 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/utils/xindy/configure.ac')
-rw-r--r-- | Build/source/utils/xindy/configure.ac | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Build/source/utils/xindy/configure.ac b/Build/source/utils/xindy/configure.ac index 6eea52f6e8e..fd02579fc54 100644 --- a/Build/source/utils/xindy/configure.ac +++ b/Build/source/utils/xindy/configure.ac @@ -31,11 +31,10 @@ 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]) AC_PROG_INSTALL AC_PROG_MAKE_SET -test "x$LEX" != "x:" || AC_MSG_ERROR([flex or lex is required, but not found]) - dnl test for building make-rules AC_ARG_ENABLE(make-rules, AS_HELP_STRING([--enable-make-rules],[build and install make-rules package (default is YES)])) dnl test for building Documentation |