From 882f5614aed89a967a6eb359e709851252b3ccf7 Mon Sep 17 00:00:00 2001 From: Eryn Wells Date: Sun, 13 Jul 2014 09:12:08 -0700 Subject: [PATCH] Add build_env (as env) to sconscript environment --- SConstruct | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SConstruct b/SConstruct index 8d00119..02dc2b7 100644 --- a/SConstruct +++ b/SConstruct @@ -149,7 +149,7 @@ def do_sconscript(env, build_env, src_dir, out_dir): sconscript = src_dir.File('SConscript') print 'Reading {}'.format(sconscript) env.SConscript(sconscript, - {'env': build_env}, + {'env': build_env, 'build_env': env}, variant_dir=out_dir)