diff options
author | Steven Knight <knight@baldmt.com> | 2001-10-28 12:51:44 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2001-10-28 12:51:44 (GMT) |
commit | 3bce8a9e6e70d61723e4824bd7ba84a7b9547456 (patch) | |
tree | 27e3b6c55dd969ce1e98bf8138a8d0c9125bac59 /src/script/scons.py | |
parent | e5410ac77d8740375b43cb154bedf7219279bf67 (diff) | |
download | SCons-3bce8a9e6e70d61723e4824bd7ba84a7b9547456.zip SCons-3bce8a9e6e70d61723e4824bd7ba84a7b9547456.tar.gz SCons-3bce8a9e6e70d61723e4824bd7ba84a7b9547456.tar.bz2 |
Change node and .sconsign handling to separate build and content signatures.
Diffstat (limited to 'src/script/scons.py')
-rw-r--r-- | src/script/scons.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/script/scons.py b/src/script/scons.py index 8f48f9c..d6c7698 100644 --- a/src/script/scons.py +++ b/src/script/scons.py @@ -311,10 +311,10 @@ def options_init(): global task_class, calc task_class = CleanTask class CleanCalculator: - def get_signature(self, node): + def bsig(self, node): + return None + def csig(self, node): return None - def set_signature(self, node, sig): - pass def current(self, node, sig): return 0 def write(self): |