diff options
author | William Deegan <bill@baddogconsulting.com> | 2019-07-14 00:25:07 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2019-07-14 00:25:07 (GMT) |
commit | d4877dbb4fd0612633535f6917fd94fa98214e1b (patch) | |
tree | 3c3474460ef6473f0db53b0f82e344f45fd019b5 /src/RELEASE.txt | |
parent | b9133757d9bb1562cd6cc159ef6a435ad7f43eb0 (diff) | |
download | SCons-d4877dbb4fd0612633535f6917fd94fa98214e1b.zip SCons-d4877dbb4fd0612633535f6917fd94fa98214e1b.tar.gz SCons-d4877dbb4fd0612633535f6917fd94fa98214e1b.tar.bz2 |
Doc updates for repo_node addition to Decider function args
Diffstat (limited to 'src/RELEASE.txt')
-rwxr-xr-x | src/RELEASE.txt | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/RELEASE.txt b/src/RELEASE.txt index efa35eb..2857cbf 100755 --- a/src/RELEASE.txt +++ b/src/RELEASE.txt @@ -41,6 +41,14 @@ CHANGED/ENHANCED EXISTING FUNCTIONALITY + - Fix performance degradation for MD5-timestamp decider. NOTE: This changes the Decider() function arguments. + From: + def my_decider(dependency, target, prev_ni): + To: + def my_decider(dependency, target, prev_ni, repo_node): + Where repo_node is the repository (or other) node to use to check if the node is out of date instead of dependency. + + - Enhanced --debug=explain output. Now the separate components of the dependency list are split up as follows: |