diff options
author | Mats Wichmann <mats@linux.com> | 2025-02-07 19:13:01 (GMT) |
---|---|---|
committer | Mats Wichmann <mats@linux.com> | 2025-02-07 19:13:01 (GMT) |
commit | 2bb3cd381c0df6d8a7170692c692f47efa648e08 (patch) | |
tree | 98487295a61d30e62ecaee11f2d649899aeb5c28 /test | |
parent | 5c1ee17e4341a7b702e241b0619d106919e63b17 (diff) | |
download | SCons-2bb3cd381c0df6d8a7170692c692f47efa648e08.zip SCons-2bb3cd381c0df6d8a7170692c692f47efa648e08.tar.gz SCons-2bb3cd381c0df6d8a7170692c692f47efa648e08.tar.bz2 |
Also enable extra_libs for CheckLib
Manpage entries and docstrings updated with version-added specifiers.
Signed-off-by: Mats Wichmann <mats@linux.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/Configure/CheckLibWithHeader_extra_libs.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/Configure/CheckLibWithHeader_extra_libs.py b/test/Configure/CheckLibWithHeader_extra_libs.py index 9d5f300..0be8999 100644 --- a/test/Configure/CheckLibWithHeader_extra_libs.py +++ b/test/Configure/CheckLibWithHeader_extra_libs.py @@ -62,9 +62,9 @@ test.write( str(libB_dir / "SConstruct"), """\ SharedLibrary( - 'libB', - source=['libB.c'], - LIBS=['A'], + 'libB', + source=['libB.c'], + LIBS=['A'], LIBPATH='../libA', CPPPATH='../libA', ) |