diff options
author | Zachary Tessler <ztessler@gmail.com> | 2017-10-06 14:56:05 (GMT) |
---|---|---|
committer | Zachary Tessler <ztessler@gmail.com> | 2017-10-06 15:01:03 (GMT) |
commit | fc19d103e3e80582fecf1594abfa68595a196d24 (patch) | |
tree | c395edacea6960f8fe13959b1e6184e64e462256 /test/Command.py | |
parent | 81c02354dfd7634708eb79547e9448150cc016a6 (diff) | |
download | SCons-fc19d103e3e80582fecf1594abfa68595a196d24.zip SCons-fc19d103e3e80582fecf1594abfa68595a196d24.tar.gz SCons-fc19d103e3e80582fecf1594abfa68595a196d24.tar.bz2 |
Fix incorrect warning of different environments for a target when repeating identical builder or Command calls that use overrides
Diffstat (limited to 'test/Command.py')
-rw-r--r-- | test/Command.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/Command.py b/test/Command.py index e6b9028..c36fb33 100644 --- a/test/Command.py +++ b/test/Command.py @@ -78,6 +78,8 @@ env.Command(target = 'f3.out', source = 'f3.in', Command(target = 'f4.out', source = 'sub', action = sub) env.Command(target = 'f5.out', source = 'f5.in', action = buildIt, XYZZY='XYZZY is set') +env.Command(target = 'f5.out', source = 'f5.in', action = buildIt, + XYZZY='XYZZY is set') Command(target = 'f6.out', source = 'f6.in', action = r'%(_python_)s build.py f6.out f6.in') env.Command(target = 'f7.out', source = 'f7.in', |