summaryrefslogtreecommitdiff
path: root/test/Repository
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2003-09-08 04:01:32 +0000
committerSteven Knight <knight@baldmt.com>2003-09-08 04:01:32 +0000
commit68b5dfbc87552d4cd1a9c067f6ba4523d9560bb9 (patch)
tree910dcf1998d6b72aa8eb4bdb5497177d331ea900 /test/Repository
parent61d018dfceac6cb9717caeeea7125d7a55b4b0eb (diff)
downloadscons-68b5dfbc87552d4cd1a9c067f6ba4523d9560bb9.tar.gz
Give the global functions corresponding Environment methods.
Diffstat (limited to 'test/Repository')
-rw-r--r--test/Repository/Local.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Repository/Local.py b/test/Repository/Local.py
index 1163767b..59620950 100644
--- a/test/Repository/Local.py
+++ b/test/Repository/Local.py
@@ -52,7 +52,7 @@ def copy(env, source, target):
open(target, "wb").write(open(source, "rb").read())
Build = Builder(action=copy)
-env = Environment(BUILDERS={'Build':Build})
+env = Environment(BUILDERS={'Build':Build}, BBB='bbb')
env.Build('aaa.mid', 'aaa.in')
env.Build('aaa.out', 'aaa.mid')
Local('aaa.out')
@@ -70,7 +70,7 @@ def bbb_copy(env, source, target):
Import("env")
env.Build('bbb.1', 'bbb.0')
-Local('bbb.1')
+env.Local('${BBB}.1')
env.Command('bbb.2', 'bbb.x', bbb_copy)
env.Depends('bbb.2', 'bbb.1')
""")