diff options
author | Mats Wichmann <mats@linux.com> | 2020-09-23 19:11:18 (GMT) |
---|---|---|
committer | Mats Wichmann <mats@linux.com> | 2020-09-23 19:11:18 (GMT) |
commit | a35a2c01fe578127a5f1584a934e33fe9e199bc5 (patch) | |
tree | 21f246a6ef4dbab0f42fd59ec301845570c10ae3 /SCons/Conftest.py | |
parent | d0a3e4ed38f4a4cd84000dec2342f51b6dda69b9 (diff) | |
download | SCons-a35a2c01fe578127a5f1584a934e33fe9e199bc5.zip SCons-a35a2c01fe578127a5f1584a934e33fe9e199bc5.tar.gz SCons-a35a2c01fe578127a5f1584a934e33fe9e199bc5.tar.bz2 |
[PR #3805] fix (existing) typo from Sider [ci skip]
Signed-off-by: Mats Wichmann <mats@linux.com>
Diffstat (limited to 'SCons/Conftest.py')
-rw-r--r-- | SCons/Conftest.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/SCons/Conftest.py b/SCons/Conftest.py index ec40902..908713c 100644 --- a/SCons/Conftest.py +++ b/SCons/Conftest.py @@ -40,14 +40,14 @@ context.Log(msg) context.BuildProg(text, ext) Function called to build a program, using "ext" for the file - extention. Must return an empty string for success, an error + extension. Must return an empty string for success, an error message for failure. For reliable test results building should be done just like an actual program would be build, using the same command and arguments (including configure results so far). context.CompileProg(text, ext) Function called to compile a program, using "ext" for the file - extention. Must return an empty string for success, an error + extension. Must return an empty string for success, an error message for failure. For reliable test results compiling should be done just like an actual source file would be compiled, using the same command and arguments (including configure results so far). |