diff options
author | Steven Knight <knight@baldmt.com> | 2003-01-21 22:06:11 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2003-01-21 22:06:11 (GMT) |
commit | ee27787c3d7718d2670e86f62c97f45b7d303f05 (patch) | |
tree | 4871a92debf89a825d31b5841746944b67387d18 /test/Library.py | |
parent | 74b60176d6fa68928d9557f79d8206782d04ad4c (diff) | |
download | SCons-ee27787c3d7718d2670e86f62c97f45b7d303f05.zip SCons-ee27787c3d7718d2670e86f62c97f45b7d303f05.tar.gz SCons-ee27787c3d7718d2670e86f62c97f45b7d303f05.tar.bz2 |
Fix library dependencies when the prefix is specified explicitly.
Diffstat (limited to 'test/Library.py')
-rw-r--r-- | test/Library.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Library.py b/test/Library.py index ce8acfd..1a71586 100644 --- a/test/Library.py +++ b/test/Library.py @@ -29,10 +29,10 @@ import TestSCons test = TestSCons.TestSCons() test.write('SConstruct', """ -env = Environment(LIBS = [ 'foo1', 'foo2' ], +env = Environment(LIBS = [ 'foo1', 'libfoo2' ], LIBPATH = [ '.' ]) env.Library(target = 'foo1', source = 'f1.c') -env.Library(target = 'foo2', source = Split('f2a.c f2b.c f2c.c')) +env.Library(target = 'libfoo2', source = Split('f2a.c f2b.c f2c.c')) libtgt=env.Library(target = 'foo3', source = ['f3a.c', 'f3b.c', 'f3c.c']) env.Program(target = 'prog', source = [ 'prog.c', libtgt ]) """) |