diff options
author | Steven Knight <knight@baldmt.com> | 2003-04-11 13:55:35 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2003-04-11 13:55:35 (GMT) |
commit | 864888601110b99b76ed83958bc370b12d3656ad (patch) | |
tree | a782dc83a85ecb3dffc3517d2bc1c67a46605b7e /test/long-lines.py | |
parent | 37487bfb58def3b8d05d964ab40fdff8b8ed4b0d (diff) | |
download | SCons-864888601110b99b76ed83958bc370b12d3656ad.zip SCons-864888601110b99b76ed83958bc370b12d3656ad.tar.gz SCons-864888601110b99b76ed83958bc370b12d3656ad.tar.bz2 |
Cygwin fixes: use -fPIC and .dll for shared libraries, 'rm' to remove files. (Chad Austin)
Diffstat (limited to 'test/long-lines.py')
-rw-r--r-- | test/long-lines.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/long-lines.py b/test/long-lines.py index cde0683..3999f62 100644 --- a/test/long-lines.py +++ b/test/long-lines.py @@ -32,7 +32,7 @@ import TestSCons test = TestSCons.TestSCons() -if sys.platform == 'win32': +if sys.platform in ['win32', 'cygwin']: lib_static_lib = 'static.lib' lib_shared_dll ='shared.dll' arflag_init = '/LIBPATH:' + test.workpath() |