From fa81e1e60961c0ab587ba43f628a9265f85051c9 Mon Sep 17 00:00:00 2001 From: lofi Date: Wed, 26 Apr 2006 08:52:39 +0000 Subject: We need to propagate TMPDIR from the environment to the build. --- audio/madman/files/patch-SConstruct | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) (limited to 'audio') diff --git a/audio/madman/files/patch-SConstruct b/audio/madman/files/patch-SConstruct index 742f44e73d2..6875b0d952a 100644 --- a/audio/madman/files/patch-SConstruct +++ b/audio/madman/files/patch-SConstruct @@ -1,5 +1,5 @@ --- SConstruct.orig Thu May 20 16:03:14 2004 -+++ SConstruct Wed Oct 12 01:01:10 2005 ++++ SConstruct Wed Apr 26 10:47:56 2006 @@ -1,6 +1,8 @@ import os import glob @@ -9,7 +9,17 @@ opts = Options( "my_options.py") opts.Add("qt_directory", "Path to Qt directory", "not specified") -@@ -112,7 +114,7 @@ +@@ -20,7 +22,8 @@ + env = Environment( + ENV = { + 'PATH' : os.environ[ 'PATH' ], +- 'HOME' : os.environ[ 'HOME' ] # required for distcc ++ 'HOME' : os.environ[ 'HOME' ], # required for distcc ++ 'TMPDIR' : os.environ['TMPDIR'] + }, options = opts) + env.Replace(CPPPATH = [], LIBS = [], LIBPATH = [], CPPDEFINES = [], + CXXFLAGS = "", CCFLAGS = "") +@@ -112,7 +115,7 @@ def CheckForQtAt(context, qtdir): context.Message('Checking for Qt at %s... ' % qtdir) result = AttemptLinkWithVariables(context, -- cgit