diff options
author | William Deegan <bill@baddogconsulting.com> | 2017-10-22 00:30:45 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-22 00:30:45 (GMT) |
commit | a583f043aec89e58bf4ab0ab20cc039299eff1df (patch) | |
tree | dc4a8131e6e80288f723531c670dc4166d0a457c /src | |
parent | 45d8610e424ab53faa519e39d04592dcbcb93b09 (diff) | |
parent | 6ed44024b2941de36c0b583fe9b29b7bea3bdbda (diff) | |
download | SCons-a583f043aec89e58bf4ab0ab20cc039299eff1df.zip SCons-a583f043aec89e58bf4ab0ab20cc039299eff1df.tar.gz SCons-a583f043aec89e58bf4ab0ab20cc039299eff1df.tar.bz2 |
Merge pull request #9 from ztessler/repeattarget
Fix incorrect warning of different environments
Diffstat (limited to 'src')
-rw-r--r-- | src/CHANGES.txt | 3 | ||||
-rw-r--r-- | src/engine/SCons/Builder.py | 9 |
2 files changed, 11 insertions, 1 deletions
diff --git a/src/CHANGES.txt b/src/CHANGES.txt index 07a1938..5df9c4f 100644 --- a/src/CHANGES.txt +++ b/src/CHANGES.txt @@ -35,6 +35,9 @@ RELEASE VERSION/DATE TO BE FILLED IN LATER This was introduced by a pull request to allow recursive variable evaluations to yield a string such as "$( $( some stuff $) $)". + From Zachary Tessler: + - Fix incorrect warning for repeated identical builder calls that use overrides + RELEASE 3.0.0 - Mon, 18 Sep 2017 08:32:04 -0700 NOTE: This is a major release. You should expect that some targets may rebuild when upgrading. diff --git a/src/engine/SCons/Builder.py b/src/engine/SCons/Builder.py index afc2cf0..b5f1a92 100644 --- a/src/engine/SCons/Builder.py +++ b/src/engine/SCons/Builder.py @@ -291,7 +291,14 @@ def _node_errors(builder, env, tlist, slist): if t.side_effect: raise UserError("Multiple ways to build the same target were specified for: %s" % t) if t.has_explicit_builder(): - if not t.env is None and not t.env is env: + # Check for errors when the environments are different + # No error if environments are the same Environment instance + if (not t.env is None and not t.env is env and + # Check OverrideEnvironment case - no error if wrapped Environments + # are the same instance, and overrides lists match + not (getattr(t.env, '__subject', 0) is getattr(env, '__subject', 1) and + getattr(t.env, 'overrides', 0) == getattr(env, 'overrides', 1) and + not builder.multi)): action = t.builder.action t_contents = t.builder.action.get_contents(tlist, slist, t.env) contents = builder.action.get_contents(tlist, slist, env) |