diff options
Diffstat (limited to 'test/SourceSignatures.py')
-rw-r--r-- | test/SourceSignatures.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/SourceSignatures.py b/test/SourceSignatures.py index 36a9195..b85f8ec 100644 --- a/test/SourceSignatures.py +++ b/test/SourceSignatures.py @@ -131,7 +131,7 @@ def build(env, target, source): open(str(target[0]), 'wt').write(open(str(source[0]), 'rt').read()) B = Builder(action = build) env = Environment(BUILDERS = { 'B' : B }) -env2 = env.Copy() +env2 = env.Clone() env2.SourceSignatures('MD5') env.B(target = 'f5.out', source = 'f5.in') env.B(target = 'f6.out', source = 'f6.in') |