summaryrefslogtreecommitdiffstats
path: root/test/option
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2008-11-10 05:25:31 (GMT)
committerSteven Knight <knight@baldmt.com>2008-11-10 05:25:31 (GMT)
commit5a2c04ad0fa3e55dfa286776d0cfdd268752527e (patch)
tree1f366f1a6c9ad8493dea056eafe31787d689a9fc /test/option
parenta4c704fe9043561c343c40251696e505a1a52c4e (diff)
downloadSCons-5a2c04ad0fa3e55dfa286776d0cfdd268752527e.zip
SCons-5a2c04ad0fa3e55dfa286776d0cfdd268752527e.tar.gz
SCons-5a2c04ad0fa3e55dfa286776d0cfdd268752527e.tar.bz2
Windows portability: Avoid duplicate foo.lib targets by telling
env.SharedLibrary() to not build an import library.
Diffstat (limited to 'test/option')
-rw-r--r--test/option/debug-includes.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/option/debug-includes.py b/test/option/debug-includes.py
index 41e5a84..de9b288 100644
--- a/test/option/debug-includes.py
+++ b/test/option/debug-includes.py
@@ -47,7 +47,7 @@ env = Environment(OBJSUFFIX = '.obj',
)
env.Program('foo.exe', ['foo.c', 'bar.c'])
env.StaticLibrary('foo', ['foo.c', 'bar.c'])
-env.SharedLibrary('foo', ['foo.c', 'bar.c'])
+env.SharedLibrary('foo', ['foo.c', 'bar.c'], no_import_lib=True)
""")
test.write('foo.c', r"""