summaryrefslogtreecommitdiff
path: root/test/Command.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2003-09-10 13:19:03 +0000
committerSteven Knight <knight@baldmt.com>2003-09-10 13:19:03 +0000
commite181e48bb62502b88107536c2e8dbd5886bf17fd (patch)
treee835fcf4a2cf7f45f7af2386a58e1104c6ecc710 /test/Command.py
parente10b74a59f1830769ba4c7e65a846228812ae2fa (diff)
downloadscons-e181e48bb62502b88107536c2e8dbd5886bf17fd.tar.gz
Make a Clean() environment method. Add global functions for AlwaysBuild(), Command(), Depends(), Ignore(), Install(), InstallAs(), Precious(), SideEffect() and SourceCode().
Diffstat (limited to 'test/Command.py')
-rw-r--r--test/Command.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Command.py b/test/Command.py
index 18029eec..ff81f662 100644
--- a/test/Command.py
+++ b/test/Command.py
@@ -71,7 +71,7 @@ env.Command(target = 'f2.out', source = 'f2.in',
env.Command(target = 'f3.out', source = 'f3.in',
action = [ [ r'%s', 'build.py', 'temp3', '$SOURCES' ],
[ r'%s', 'build.py', '$TARGET', 'temp3'] ])
-env.Command(target = 'f4.out', source = 'sub', action = sub)
+Command(target = 'f4.out', source = 'sub', action = sub)
""" % (python, python, python, python))
test.write('f1.in', "f1.in\n")