diff options
author | William Deegan <bill@baddogconsulting.com> | 2018-10-09 20:23:51 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2018-10-09 20:23:51 (GMT) |
commit | ade84bc59db524fbccd670bfadefa786407c7c0b (patch) | |
tree | a3da7c7e0fa926ad41f01ae09ab709c660c67bd9 /test/explain/basic.py | |
parent | a1c6873e2f84240feab9a923ccc1ebcda3160339 (diff) | |
parent | e342d031c2a80cc7eb27ca139b7adee2d37a8216 (diff) | |
download | SCons-ade84bc59db524fbccd670bfadefa786407c7c0b.zip SCons-ade84bc59db524fbccd670bfadefa786407c7c0b.tar.gz SCons-ade84bc59db524fbccd670bfadefa786407c7c0b.tar.bz2 |
Merge remote-tracking branch 'upstream/master' into subst_rewrite
Diffstat (limited to 'test/explain/basic.py')
-rw-r--r-- | test/explain/basic.py | 3 |
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') |