Author: raskin Date: 2010-07-06 20:27:48 +0000 (Tue, 06 Jul 2010) New Revision: 22500
You can view the changes in this commit at: https://svn.nixos.org/viewvc/nix?rev=22500&view=rev Modified: nixpkgs/trunk/pkgs/development/compilers/gcl/default.nix Log: Request a larger version Changes: Modified: nixpkgs/trunk/pkgs/development/compilers/gcl/default.nix =================================================================== --- nixpkgs/trunk/pkgs/development/compilers/gcl/default.nix 2010-07-06 19:59:10 UTC (rev 22499) +++ nixpkgs/trunk/pkgs/development/compilers/gcl/default.nix 2010-07-06 20:27:48 UTC (rev 22500) @@ -18,7 +18,10 @@ name = "gcl-2.6.8pre"; inherit buildInputs; - configureFlags = []; + configureFlags = [ + "--enable-xgcl=yes" + "--enable-ansi" + ]; # Upstream bug submitted - http://savannah.gnu.org/bugs/index.php?30371 # $TMPDIR must have no extension @@ -33,10 +36,8 @@ sed -re 's^([ \t])cpp ^\1cpp -I${a.stdenv.gcc.gcc}/include -I${a.stdenv.gcc.libc}/include ^g' -i makefile '') ["minInit" "doUnpack"]; - fixConfigure = a.doPatchShebangs "."; - /* doConfigure should be removed if not needed */ - phaseNames = ["setVars" "doUnpack" "fixConfigure" "preBuild" + phaseNames = ["setVars" "doUnpack" "preBuild" "doConfigure" "doMakeInstall"]; meta = { _______________________________________________ nix-commits mailing list [email protected] http://mail.cs.uu.nl/mailman/listinfo/nix-commits
