diff options
Diffstat (limited to 'test/sconsign')
-rw-r--r-- | test/sconsign/script.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/sconsign/script.py b/test/sconsign/script.py index d94a956..9612560 100644 --- a/test/sconsign/script.py +++ b/test/sconsign/script.py @@ -86,7 +86,7 @@ test.write(['work1', 'SConstruct'], """ SConsignFile(None) env1 = Environment(PROGSUFFIX = '.exe', OBJSUFFIX = '.obj') env1.Program('sub1/hello.c') -env2 = env1.Copy(CPPPATH = ['sub2']) +env2 = env1.Clone(CPPPATH = ['sub2']) env2.Program('sub2/hello.c') """) @@ -251,7 +251,7 @@ SourceSignatures('timestamp') TargetSignatures('content') env1 = Environment(PROGSUFFIX = '.exe', OBJSUFFIX = '.obj') env1.Program('sub1/hello.c') -env2 = env1.Copy(CPPPATH = ['sub2']) +env2 = env1.Clone(CPPPATH = ['sub2']) env2.Program('sub2/hello.c') """) @@ -282,7 +282,7 @@ test.write(['work2', 'SConstruct'], """ SConsignFile() env1 = Environment(PROGSUFFIX = '.exe', OBJSUFFIX = '.obj') env1.Program('sub1/hello.c') -env2 = env1.Copy(CPPPATH = ['sub2']) +env2 = env1.Clone(CPPPATH = ['sub2']) env2.Program('sub2/hello.c') """) @@ -510,7 +510,7 @@ SourceSignatures('timestamp') TargetSignatures('content') env1 = Environment(PROGSUFFIX = '.exe', OBJSUFFIX = '.obj') env1.Program('sub1/hello.c') -env2 = env1.Copy(CPPPATH = ['sub2']) +env2 = env1.Clone(CPPPATH = ['sub2']) env2.Program('sub2/hello.c') """) |