diff options
author | Peter Simons <simons@cryp.to> | 2010-06-24T17·51+0000 |
---|---|---|
committer | Peter Simons <simons@cryp.to> | 2010-06-24T17·51+0000 |
commit | 4c21c016c578ced9d612ea3040ea225e57c477ec (patch) | |
tree | 5e891195aba73d4516f6349ea13e9f0f630147a1 | |
parent | bcec46057c0a99be3f0094cddfe0b06f27919f74 (diff) |
configure.ac: make flex and bison required programs
The build fails if these tools aren't available.
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 8d3f308d7142..079521fe59be 100644 --- a/configure.ac +++ b/configure.ac @@ -155,8 +155,8 @@ NEED_PROG(patch, patch) AC_PATH_PROG(xmllint, xmllint, false) AC_PATH_PROG(xsltproc, xsltproc, false) AC_PATH_PROG(w3m, w3m, false) -AC_PATH_PROG(flex, flex, false) -AC_PATH_PROG(bison, bison, false) +NEED_PROG(flex, flex) +NEED_PROG(bison, bison) NEED_PROG(perl, perl) NEED_PROG(sed, sed) NEED_PROG(tar, tar) |