diff options
author | Steven Knight <knight@baldmt.com> | 2003-01-05 13:11:27 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2003-01-05 13:11:27 (GMT) |
commit | 51974ccdc1ee8340c54f8fa02670c554d20ef157 (patch) | |
tree | 78aeb47be219e4ad28483e7d57855ef9e72ef411 /etc/TestSCons.py | |
parent | d88f61db921461663b934595e38a15e2ca09c225 (diff) | |
download | SCons-51974ccdc1ee8340c54f8fa02670c554d20ef157.zip SCons-51974ccdc1ee8340c54f8fa02670c554d20ef157.tar.gz SCons-51974ccdc1ee8340c54f8fa02670c554d20ef157.tar.bz2 |
Fix problems returning the appropriate exit status on build errors.
Diffstat (limited to 'etc/TestSCons.py')
-rw-r--r-- | etc/TestSCons.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/TestSCons.py b/etc/TestSCons.py index c97fd48..4b392d4 100644 --- a/etc/TestSCons.py +++ b/etc/TestSCons.py @@ -34,7 +34,7 @@ if os.name == 'posix': def _failed(self, status = 0): if self.status is None: return None - if os.WIFSIGNALED(status): + if os.WIFSIGNALED(self.status): return None return _status(self) != status def _status(self): |