summaryrefslogtreecommitdiff
path: root/SConscript
diff options
context:
space:
mode:
authorSimon Robertshaw <simon@hardwired.org.uk>2013-10-20 14:38:40 (GMT)
committer Simon Robertshaw <simon@hardwired.org.uk>2013-10-20 14:38:40 (GMT)
commitd9f1762da0b2c549cef48bb2d7b078a89c9ee959 (patch)
tree9f8bcf0e4cfde472447d1ced5a9a5312fc71504a /SConscript
parente8c53dc3e8d293ef750f3780b999783ae3537ba9 (diff)
parentdd73a7244f49de54ccd35a7cf1fdafd1a557e505 (diff)
downloadpowder-d9f1762da0b2c549cef48bb2d7b078a89c9ee959.zip
powder-d9f1762da0b2c549cef48bb2d7b078a89c9ee959.tar.gz
Merge branch 'develop' of https://github.com/simtr/The-Powder-Toy into develop
Diffstat (limited to 'SConscript')
-rwxr-xr-xSConscript4
1 files changed, 2 insertions, 2 deletions
diff --git a/SConscript b/SConscript
index 38a6b25..e7833cc 100755
--- a/SConscript
+++ b/SConscript
@@ -135,9 +135,9 @@ if((not GetOption('lin')) and (not GetOption('win')) and (not GetOption('rpi'))
# if the platform is windows switch to a mingw toolset, use the default otherwise
if(GetOption('win')):
- env = Environment(tools = ['mingw'])
+ env = Environment(tools = ['mingw'], ENV = os.environ)
else:
- env = Environment(tools = ['default'])
+ env = Environment(tools = ['default'], ENV = os.environ)
if(GetOption("copy_env")):
lstvar=["CC","CXX","LD","CFLAGS"]