diff options
author | William Deegan <bill@baddogconsulting.com> | 2019-12-10 16:19:00 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-10 16:19:00 (GMT) |
commit | 392d323e36bf8c80c7a6d43160148359cfae8ff6 (patch) | |
tree | 17e49e86ee1ac1d6ebbc43227dc411b899aceab7 /testing | |
parent | 9fe5b8fadd6aede35fd9e057d2cf791f57108f65 (diff) | |
parent | 2e2ba90baa24a9919000edbf688c306e2c428fb6 (diff) | |
download | SCons-392d323e36bf8c80c7a6d43160148359cfae8ff6.zip SCons-392d323e36bf8c80c7a6d43160148359cfae8ff6.tar.gz SCons-392d323e36bf8c80c7a6d43160148359cfae8ff6.tar.bz2 |
Merge pull request #3473 from kulikjak/master
Fix incorrect testing assumptions for Solaris
Diffstat (limited to 'testing')
-rw-r--r-- | testing/framework/TestCommon.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testing/framework/TestCommon.py b/testing/framework/TestCommon.py index ca4a147..8e6cc8e 100644 --- a/testing/framework/TestCommon.py +++ b/testing/framework/TestCommon.py @@ -165,8 +165,8 @@ elif sys.platform.find('darwin') != -1: elif sys.platform.find('sunos') != -1: exe_suffix = '' obj_suffix = '.o' - shobj_suffix = '.o' - shobj_prefix = 'so_' + shobj_suffix = '.pic.o' + shobj_prefix = '' lib_prefix = 'lib' lib_suffix = '.a' dll_prefix = 'lib' |