diff options
author | Steven Knight <knight@baldmt.com> | 2002-06-05 23:35:56 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2002-06-05 23:35:56 (GMT) |
commit | 2f7d4f660fd048edc342a989d25c94d7b52ab13e (patch) | |
tree | 20def5c6f0f7b68ab7151cac4ada5c470a3b31e0 /test/Depends.py | |
parent | 42717c855f7cbb73d3017ac243a34491d3cc0c53 (diff) | |
download | SCons-2f7d4f660fd048edc342a989d25c94d7b52ab13e.zip SCons-2f7d4f660fd048edc342a989d25c94d7b52ab13e.tar.gz SCons-2f7d4f660fd048edc342a989d25c94d7b52ab13e.tar.bz2 |
Changes from Charles Crain.
Diffstat (limited to 'test/Depends.py')
-rw-r--r-- | test/Depends.py | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/test/Depends.py b/test/Depends.py index a261a4f..cb1fae1 100644 --- a/test/Depends.py +++ b/test/Depends.py @@ -42,11 +42,9 @@ file.close() """) test.write('SConstruct', """ -Foo = Builder(name = "Foo", - action = r"%s build.py $TARGET $SOURCES subdir/foo.dep") -Bar = Builder(name = "Bar", - action = r"%s build.py $TARGET $SOURCES subdir/bar.dep") -env = Environment(BUILDERS = [Foo, Bar]) +Foo = Builder(action = r"%s build.py $TARGET $SOURCES subdir/foo.dep") +Bar = Builder(action = r"%s build.py $TARGET $SOURCES subdir/bar.dep") +env = Environment(BUILDERS = { 'Foo' : Foo, 'Bar' : Bar }) env.Depends(target = ['f1.out', 'f2.out'], dependency = 'subdir/foo.dep') env.Depends(target = 'f3.out', dependency = 'subdir/bar.dep') env.Foo(target = 'f1.out', source = 'f1.in') |