diff options
Diffstat (limited to 'test/SHLINKFLAGS.py')
-rw-r--r-- | test/SHLINKFLAGS.py | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/test/SHLINKFLAGS.py b/test/SHLINKFLAGS.py index 85ad6a3..9a4a6cc 100644 --- a/test/SHLINKFLAGS.py +++ b/test/SHLINKFLAGS.py @@ -30,13 +30,8 @@ import sys import TestSCons python = TestSCons.python - -if sys.platform == 'win32': - lib_ = '' - _shlib = '.dll' -else: - lib_ = 'lib' - _shlib = '.so' +lib_ = TestSCons.lib_ +_shlib = TestSCons._dll test = TestSCons.TestSCons() |