summaryrefslogtreecommitdiffstats
path: root/test/Depends.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2001-10-31 03:47:18 (GMT)
committerSteven Knight <knight@baldmt.com>2001-10-31 03:47:18 (GMT)
commit00c3ada748b164ecf909727fa81f521dde72fda9 (patch)
tree123feebbeb8fd1ea7c4dbc0de3cd81b0e5f6f8ad /test/Depends.py
parentae1737265e92978dd851292340d21af6e2269196 (diff)
downloadSCons-00c3ada748b164ecf909727fa81f521dde72fda9.zip
SCons-00c3ada748b164ecf909727fa81f521dde72fda9.tar.gz
SCons-00c3ada748b164ecf909727fa81f521dde72fda9.tar.bz2
Make the (s) and variables upper-case.
Diffstat (limited to 'test/Depends.py')
-rw-r--r--test/Depends.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Depends.py b/test/Depends.py
index 5fb0479..822573a 100644
--- a/test/Depends.py
+++ b/test/Depends.py
@@ -43,9 +43,9 @@ file.close()
test.write('SConstruct', """
Foo = Builder(name = "Foo",
- action = "%s build.py $target $sources subdir/foo.dep")
+ action = "%s build.py $TARGET $SOURCES subdir/foo.dep")
Bar = Builder(name = "Bar",
- action = "%s build.py $target $sources subdir/bar.dep")
+ action = "%s build.py $TARGET $SOURCES subdir/bar.dep")
env = Environment(BUILDERS = [Foo, Bar])
env.Depends(target = ['f1.out', 'f2.out'], dependency = 'subdir/foo.dep')
env.Depends(target = 'f3.out', dependency = 'subdir/bar.dep')