diff options
author | Steven Knight <knight@baldmt.com> | 2003-12-08 04:43:08 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2003-12-08 04:43:08 (GMT) |
commit | 69fad99f14c6ae0ba16db7ffda4d892fb2381f53 (patch) | |
tree | e00375c2b4c22646c121e5d20555b67ae0a804c6 /src/CHANGES.txt | |
parent | f7e6a9276fe7459388b933cb215994f300dd5271 (diff) | |
download | SCons-69fad99f14c6ae0ba16db7ffda4d892fb2381f53.zip SCons-69fad99f14c6ae0ba16db7ffda4d892fb2381f53.tar.gz SCons-69fad99f14c6ae0ba16db7ffda4d892fb2381f53.tar.bz2 |
Relax the duplicate-environment restriction for targets so that it's okay if the two environments would build the target with the same command or function call. (Scott Fritchie)
Diffstat (limited to 'src/CHANGES.txt')
-rw-r--r-- | src/CHANGES.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/CHANGES.txt b/src/CHANGES.txt index a4e4c60..391d11b 100644 --- a/src/CHANGES.txt +++ b/src/CHANGES.txt @@ -61,6 +61,12 @@ RELEASE 0.95 - XXX - Make the message about ignoring a missing SConscript file into a suppressable Warning, not a hard-coded sys.stderr.write(). + - If a builder can be called multiple times for a target (because + the sources and overrides are identical, or it's a builder with the + "multi" flag set), allow the builder to be called through multiple + environments so long as the builders have the same signature for + the environments in questions (that is, they're the same action). + From Steven Knight: - Fix EnsureSConsVersion() so it checks against the SCons version, |