diff options
author | Steven Knight <knight@baldmt.com> | 2002-10-16 04:13:14 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2002-10-16 04:13:14 (GMT) |
commit | bd91e792df09aebec78f7972e17eab873dc71246 (patch) | |
tree | 5b544223c15435fac1669b7d0f2c978483cf61fa /test/option--U.py | |
parent | 3f747760055842fd7ea89770cc568761d5729117 (diff) | |
download | SCons-bd91e792df09aebec78f7972e17eab873dc71246.zip SCons-bd91e792df09aebec78f7972e17eab873dc71246.tar.gz SCons-bd91e792df09aebec78f7972e17eab873dc71246.tar.bz2 |
Refactor Repository and BuildDir. (Charles Crain)
Diffstat (limited to 'test/option--U.py')
-rw-r--r-- | test/option--U.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/option--U.py b/test/option--U.py index 23e82b1..0160015 100644 --- a/test/option--U.py +++ b/test/option--U.py @@ -52,7 +52,7 @@ Default(env.B(target = 'sub1/foo.out', source = 'sub1/foo.in')) Export('env') SConscript('sub2/SConscript') Default(env.B(target = 'sub3/baz.out', source = 'sub3/baz.in')) -BuildDir('sub2b', 'sub2') +BuildDir('sub2b', 'sub2', duplicate=0) SConscript('sub2b/SConscript') Default(env.B(target = 'sub2/xxx.out', source = 'xxx.in')) SConscript('SConscript') |