summaryrefslogtreecommitdiffstats
path: root/test/explain/basic.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/explain/basic.py')
-rw-r--r--test/explain/basic.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/explain/basic.py b/test/explain/basic.py
index ec7238e..19fc328 100644
--- a/test/explain/basic.py
+++ b/test/explain/basic.py
@@ -81,6 +81,7 @@ sys.exit(0)
SConstruct_contents = """\
+DefaultEnvironment(tools=[])
import re
include_re = re.compile(r'^include\s+(\S+)$', re.M)
@@ -98,7 +99,7 @@ kscan = Scanner(name = 'kfile',
cat = Builder(action = [[r'%(python)s', r'%(cat_py)s', '$TARGET', '$SOURCES']])
one_cat = Builder( action = [[r'%(python)s', r'%(cat_py)s', '$TARGET', '${SOURCES[0]}']])
-env = Environment()
+env = Environment(tools=[])
env.Append(BUILDERS = {'Cat':cat, 'OneCat':one_cat},
SCANNERS = kscan)
env.PrependENVPath('PATHEXT', '.PY')