diff options
author | Michael Nottebrock <lofi@FreeBSD.org> | 2006-04-26 08:52:39 +0000 |
---|---|---|
committer | Michael Nottebrock <lofi@FreeBSD.org> | 2006-04-26 08:52:39 +0000 |
commit | 8aeb4006003e8e0871352733ecc08d88bc5ab82a (patch) | |
tree | 2d71c779c911d438797c7c8d55af1288990f6f36 /audio/madman | |
parent | 93e9d8c0e6199986849ac0342f59d72d2fde5cfd (diff) |
Notes
Diffstat (limited to 'audio/madman')
-rw-r--r-- | audio/madman/files/patch-SConstruct | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/audio/madman/files/patch-SConstruct b/audio/madman/files/patch-SConstruct index 742f44e73d21..6875b0d952ae 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, |