diff options
author | Steven Knight <knight@baldmt.com> | 2003-09-23 03:07:48 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2003-09-23 03:07:48 (GMT) |
commit | a76887160c806a634e56dae356d2389ffe92c47a (patch) | |
tree | cc7a2366f0751138d3ed1dbe2cc08360b3c2aa3a /test/Library.py | |
parent | 16c04783a34ffe9762a39a3fd171dcc4bcccfa80 (diff) | |
download | SCons-a76887160c806a634e56dae356d2389ffe92c47a.zip SCons-a76887160c806a634e56dae356d2389ffe92c47a.tar.gz SCons-a76887160c806a634e56dae356d2389ffe92c47a.tar.bz2 |
Add global functions for all of the default Builders attached to the default Environment.
Diffstat (limited to 'test/Library.py')
-rw-r--r-- | test/Library.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Library.py b/test/Library.py index 980e7c5..2011b72 100644 --- a/test/Library.py +++ b/test/Library.py @@ -32,7 +32,7 @@ test.write('SConstruct', """ env = Environment(LIBS = [ 'foo1', 'libfoo2' ], LIBPATH = [ '.' ]) env.Library(target = 'foo1', source = 'f1.c') -env.Library(target = 'libfoo2', source = Split('f2a.c f2b.c f2c.c')) +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 ]) """) |