summaryrefslogtreecommitdiffstats
path: root/test/SHLINKFLAGS.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2003-04-30 19:38:19 (GMT)
committerSteven Knight <knight@baldmt.com>2003-04-30 19:38:19 (GMT)
commit3387eab42442c7fe7ed0064de5b939497cc6df1b (patch)
tree3c34e3c08fe379c147c7166067d05a0a87fccaa6 /test/SHLINKFLAGS.py
parent212d77d88aa4374ef13f2e6bc7edf3395ac9736c (diff)
downloadSCons-3387eab42442c7fe7ed0064de5b939497cc6df1b.zip
SCons-3387eab42442c7fe7ed0064de5b939497cc6df1b.tar.gz
SCons-3387eab42442c7fe7ed0064de5b939497cc6df1b.tar.bz2
Test portability fixes for Cygwin. (Chad Austin)
Diffstat (limited to 'test/SHLINKFLAGS.py')
-rw-r--r--test/SHLINKFLAGS.py9
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()