This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def modified_md5_decider(dependency, target, prev_ni): | |
"""SCons MD5 Decider function that checks if targets have changed""" | |
# Use default checking for changes in the source file | |
source_changed = dependency.changed_content(target, prev_ni) | |
if source_changed: | |
return source_changed | |
else: | |
target_changed = False | |
# If target node does not implement get_csig(), do not try to determine | |
# whether to rebuild. (csig = content signature) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"ALY": "ALY", | |
"ALLEY": "ALY", | |
"ALLEE": "ALY", | |
"ALLY": "ALY", | |
"ANX": "ANX", | |
"ANEX": "ANX", | |
"ANNEX": "ANX", | |
"ANNX": "ANX", | |
"ARC": "ARC", |