summaryrefslogtreecommitdiff
path: root/test/Ignore.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/Ignore.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/Ignore.py')
-rw-r--r--test/Ignore.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Ignore.py b/test/Ignore.py
index 68094345..5e9650e9 100644
--- a/test/Ignore.py
+++ b/test/Ignore.py
@@ -48,7 +48,7 @@ Foo = Builder(action = r"%s build.py $TARGET $SOURCES")
Bar = Builder(action = r"%s build.py $TARGET $SOURCES")
env = Environment(BUILDERS = { 'Foo' : Foo, 'Bar' : Bar }, SUBDIR='subdir')
env.Foo(target = 'f1.out', source = ['f1a.in', 'f1b.in'])
-env.Ignore(target = 'f1.out', dependency = 'f1b.in')
+Ignore(target = 'f1.out', dependency = 'f1b.in')
SConscript('subdir/SConscript', "env")
env.Foo(target = 'subdir/f3.out', source = ['subdir/f3a.in', 'subdir/f3b.in'])
env.Ignore(target = r'%s', dependency = r'%s')