diff options
author | Russel Winder <russel@winder.org.uk> | 2014-09-05 17:46:26 (GMT) |
---|---|---|
committer | Russel Winder <russel@winder.org.uk> | 2014-09-05 17:46:26 (GMT) |
commit | 074a3c0d96b7a02284b3c67d837d3753731e68c8 (patch) | |
tree | d28cb71b241205bdb29930ca534a4ea9001ec626 /test/D/HSTeoh | |
parent | 6d0ecf897b6e2ac2429d0e5ced2f8fe9cf29cdc5 (diff) | |
download | SCons-074a3c0d96b7a02284b3c67d837d3753731e68c8.zip SCons-074a3c0d96b7a02284b3c67d837d3753731e68c8.tar.gz SCons-074a3c0d96b7a02284b3c67d837d3753731e68c8.tar.bz2 |
Remove the setting of the ENV property to os.environ.
Diffstat (limited to 'test/D/HSTeoh')
-rw-r--r-- | test/D/HSTeoh/LinkingProblem/SConstruct_template | 3 | ||||
-rw-r--r-- | test/D/HSTeoh/SingleStringCannotBeMultipleOptions/SConstruct_template | 1 |
2 files changed, 1 insertions, 3 deletions
diff --git a/test/D/HSTeoh/LinkingProblem/SConstruct_template b/test/D/HSTeoh/LinkingProblem/SConstruct_template index 6815cdf..a4aa795 100644 --- a/test/D/HSTeoh/LinkingProblem/SConstruct_template +++ b/test/D/HSTeoh/LinkingProblem/SConstruct_template @@ -3,8 +3,7 @@ import os environment = Environment( - ENV=os.environ, - tools = ['cc', 'link' , '{}'], + tools = ['cc', '{}', 'link'], LIBS = ['ncurses']) environment.Object('ncurs_impl.o', 'ncurs_impl.c') diff --git a/test/D/HSTeoh/SingleStringCannotBeMultipleOptions/SConstruct_template b/test/D/HSTeoh/SingleStringCannotBeMultipleOptions/SConstruct_template index 89c603b..118a7b2 100644 --- a/test/D/HSTeoh/SingleStringCannotBeMultipleOptions/SConstruct_template +++ b/test/D/HSTeoh/SingleStringCannotBeMultipleOptions/SConstruct_template @@ -3,7 +3,6 @@ import os environment = Environment( - ENV=os.environ, tools=['link', '{}'], # It might be thought that a single string can contain multiple options space separated. Actually this # is deemed to be a single option, so leads to an error. |