diff options
author | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2009-05-29 16:48:55 +0000 |
---|---|---|
committer | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2009-05-29 16:48:55 +0000 |
commit | 4817bd6bc5413c65cffa96030009fb9a0b09db91 (patch) | |
tree | ff8ec1a8b4f6f1b7daf237560021852e5c7aff5b | |
parent | - Update to 0.9.2 (diff) |
- Support nondefault prefix and building with ccache by passing env through scons
Reported by: QATty
-rw-r--r-- | astro/gaia/files/patch-SConstruct | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/astro/gaia/files/patch-SConstruct b/astro/gaia/files/patch-SConstruct index 948bf9453dc0..47c96648a0be 100644 --- a/astro/gaia/files/patch-SConstruct +++ b/astro/gaia/files/patch-SConstruct @@ -1,5 +1,5 @@ ---- SConstruct~ 2006-12-05 13:31:42.000000000 +0100 -+++ SConstruct 2008-06-22 22:40:55.050203635 +0200 +--- SConstruct.orig 2006-12-05 15:31:42.000000000 +0300 ++++ SConstruct 2009-05-29 20:45:20.000000000 +0400 @@ -8,7 +8,7 @@ ####################################### # OPTIONS @@ -9,3 +9,12 @@ # conditionally build parts of gaia #opts.Add(BoolOption('gaia', 'Compile gaia OpenGL client', 1)); +@@ -25,7 +25,7 @@ + ####################################### + # ENVIRONMENT & SYSTEM_SPECIFIC CONFIGURATION + ####################################### +-env = Environment( options = opts ) ++env = Environment( options = opts, ENV = os.environ ) + + if env['prefix'] == "": + env['prefix'] = '.' |