Author: simons Date: 2010-06-24 17:51:19 +0000 (Thu, 24 Jun 2010) New Revision: 22405
You can view the changes in this commit at: https://svn.nixos.org/viewvc/nix?rev=22405&view=rev Modified: nix/trunk/configure.ac Log: configure.ac: make flex and bison required programs The build fails if these tools aren't available. Changes: Modified: nix/trunk/configure.ac =================================================================== --- nix/trunk/configure.ac 2010-06-24 17:51:13 UTC (rev 22404) +++ nix/trunk/configure.ac 2010-06-24 17:51:19 UTC (rev 22405) @@ -155,8 +155,8 @@ 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) _______________________________________________ nix-commits mailing list [email protected] http://mail.cs.uu.nl/mailman/listinfo/nix-commits
