summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorStefan Bühler <stbuehler@web.de>2020-08-02 19:22:23 +0200
committerStefan Bühler <stbuehler@web.de>2020-08-02 20:05:33 +0200
commit5515bb2a08fb3cc2b9d8c23bc506eee09a4d258c (patch)
tree3a7b689fb688df253a4aadae3b896764f54919d6 /SConstruct
parente012705b43b9a6077d7441f2eab001c1b980ec59 (diff)
downloadlighttpd-git-5515bb2a08fb3cc2b9d8c23bc506eee09a4d258c.tar.gz
scons: fix check environment
if os.environ is a special class the scons.Environment Clone() doesn't work properly. show builddir in prepare.sh so we can actually see it works.
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct2
1 files changed, 1 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct
index 42165724..d63a00db 100644
--- a/SConstruct
+++ b/SConstruct
@@ -273,7 +273,7 @@ vars.AddVariables(
)
env = Environment(
- ENV = os.environ,
+ ENV = dict(os.environ), # make sure we have a dict here so .Clone() works properly
variables = vars,
CPPPATH = Split('#sconsbuild/build')
)