Author: simons Date: 2010-06-24 22:22:24 +0000 (Thu, 24 Jun 2010) New Revision: 22409
You can view the changes in this commit at: https://svn.nixos.org/viewvc/nix?rev=22409&view=rev Modified: nix/trunk/configure.ac Log: Revert "configure.ac: make flex and bison required programs" This reverts commit 22405. Apparently, these programs aren't necessarily required when building from a release archive. Changes: Modified: nix/trunk/configure.ac =================================================================== --- nix/trunk/configure.ac 2010-06-24 21:23:37 UTC (rev 22408) +++ nix/trunk/configure.ac 2010-06-24 22:22:24 UTC (rev 22409) @@ -159,8 +159,8 @@ AC_PATH_PROG(xmllint, xmllint, false) AC_PATH_PROG(xsltproc, xsltproc, false) AC_PATH_PROG(w3m, w3m, false) -NEED_PROG(flex, flex) -NEED_PROG(bison, bison) +AC_PATH_PROG(flex, flex, false) +AC_PATH_PROG(bison, bison, false) 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
