diff options
author | Daniel Moody <dmoody256@gmail.com> | 2022-05-26 03:24:01 (GMT) |
---|---|---|
committer | Daniel Moody <dmoody256@gmail.com> | 2022-05-26 03:24:10 (GMT) |
commit | b2b7a3c12b894a2561ba91fd55896d56c063d402 (patch) | |
tree | 6f6ea733251caca50138482e81653197cc455d75 /SCons/SConfTests.py | |
parent | 5054f7045344e1f9dd4a2154f2191a3459a9ae98 (diff) | |
download | SCons-b2b7a3c12b894a2561ba91fd55896d56c063d402.zip SCons-b2b7a3c12b894a2561ba91fd55896d56c063d402.tar.gz SCons-b2b7a3c12b894a2561ba91fd55896d56c063d402.tar.bz2 |
Fix for #2757, non conftest nodes involved in configure checks now get node info cleared after check.
Diffstat (limited to 'SCons/SConfTests.py')
-rw-r--r-- | SCons/SConfTests.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/SCons/SConfTests.py b/SCons/SConfTests.py index a06b227..477226e 100644 --- a/SCons/SConfTests.py +++ b/SCons/SConfTests.py @@ -214,6 +214,8 @@ class SConfTestCase(unittest.TestCase): pass def get_stored_info(self): pass + def is_conftest(self): + return True def get_executor(self): class Executor: def __init__(self, targets): |