diff options
author | Mats Wichmann <mats@linux.com> | 2025-02-08 14:04:54 (GMT) |
---|---|---|
committer | Mats Wichmann <mats@linux.com> | 2025-02-08 14:04:54 (GMT) |
commit | b1d71e674eb2feb2c0520390ed65c73cfda35bfb (patch) | |
tree | f0af69758fd65e6b9faa9dadb0f4f47725bb45cf /test | |
parent | 07e63ae27ecdd710fef08b6e9344faa71ce4885d (diff) | |
download | SCons-b1d71e674eb2feb2c0520390ed65c73cfda35bfb.zip SCons-b1d71e674eb2feb2c0520390ed65c73cfda35bfb.tar.gz SCons-b1d71e674eb2feb2c0520390ed65c73cfda35bfb.tar.bz2 |
Fix CheckLibWithHeader test - undo mistake
"Muscle memory" had me add calls to skip tools for DefaultEnvironment,
but the two library builds use it, so that was just plain wrong.
Restored prior state.
Signed-off-by: Mats Wichmann <mats@linux.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/Configure/CheckLibWithHeader_extra_libs.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/test/Configure/CheckLibWithHeader_extra_libs.py b/test/Configure/CheckLibWithHeader_extra_libs.py index 0b7a560..7b5c05d 100644 --- a/test/Configure/CheckLibWithHeader_extra_libs.py +++ b/test/Configure/CheckLibWithHeader_extra_libs.py @@ -57,7 +57,6 @@ void libA() { test.write( str(libA_dir / "SConstruct"), """\ -DefaultEnvironment(tools=[]) SharedLibrary('A', source=['libA.c']) """, ) @@ -87,7 +86,6 @@ void libB () { test.write( str(libB_dir / "SConstruct"), """\ -DefaultEnvironment(tools=[]) SharedLibrary( 'B', source=['libB.c'], |