From ce2f4992f1f9dd8c9d1b32d5cbf429371574199c Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Tue, 6 Jul 2010 19:59:10 +0000 Subject: [PATCH] Work around a gcl bug related to temporary directories - bug report sent upstream svn path=/nixpkgs/trunk/; revision=22499 --- pkgs/development/compilers/gcl/default.nix | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/pkgs/development/compilers/gcl/default.nix b/pkgs/development/compilers/gcl/default.nix index 1a86b878d92..fa891e1726a 100644 --- a/pkgs/development/compilers/gcl/default.nix +++ b/pkgs/development/compilers/gcl/default.nix @@ -20,6 +20,13 @@ rec { inherit buildInputs; configureFlags = []; + # Upstream bug submitted - http://savannah.gnu.org/bugs/index.php?30371 + # $TMPDIR must have no extension + setVars = a.noDepEntry '' + export TMPDIR="''${TMPDIR:-''${TMP:-''${TEMP}}}/tmp-for-gcl" + mkdir -p "$TMPDIR" + ''; + preBuild = a.fullDepEntry ('' sed -re "s@/bin/cat@$(which cat)@g" -i configure */configure sed -re "s@if test -d /proc/self @if false @" -i configure @@ -29,7 +36,7 @@ rec { fixConfigure = a.doPatchShebangs "."; /* doConfigure should be removed if not needed */ - phaseNames = ["doUnpack" "fixConfigure" "preBuild" + phaseNames = ["setVars" "doUnpack" "fixConfigure" "preBuild" "doConfigure" "doMakeInstall"]; meta = {