diff options
author | Steven Knight <knight@baldmt.com> | 2003-04-30 19:38:19 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2003-04-30 19:38:19 (GMT) |
commit | 3387eab42442c7fe7ed0064de5b939497cc6df1b (patch) | |
tree | 3c34e3c08fe379c147c7166067d05a0a87fccaa6 /test/LIBPATH.py | |
parent | 212d77d88aa4374ef13f2e6bc7edf3395ac9736c (diff) | |
download | SCons-3387eab42442c7fe7ed0064de5b939497cc6df1b.zip SCons-3387eab42442c7fe7ed0064de5b939497cc6df1b.tar.gz SCons-3387eab42442c7fe7ed0064de5b939497cc6df1b.tar.bz2 |
Test portability fixes for Cygwin. (Chad Austin)
Diffstat (limited to 'test/LIBPATH.py')
-rw-r--r-- | test/LIBPATH.py | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/test/LIBPATH.py b/test/LIBPATH.py index 2730be3..6e2a836 100644 --- a/test/LIBPATH.py +++ b/test/LIBPATH.py @@ -29,14 +29,9 @@ import sys import os.path import time -if sys.platform == 'win32': - _exe = '.exe' - _dll = '.dll' - lib_ = '' -else: - _exe = '' - _dll = '.so' - lib_ = 'lib' +_exe = TestSCons._exe +_dll = TestSCons._dll +lib_ = TestSCons.lib_ test = TestSCons.TestSCons() |