diff options
author | Steven Knight <knight@baldmt.com> | 2003-02-05 22:06:52 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2003-02-05 22:06:52 (GMT) |
commit | 1321ef0af677827deb274d698d06ffa8b73010b0 (patch) | |
tree | 12db09379f94382c56b55b9050e5e59950344867 /test/option-u.py | |
parent | 15e31b8bda9f093971af3c3b0136b043ebb02746 (diff) | |
download | SCons-1321ef0af677827deb274d698d06ffa8b73010b0.zip SCons-1321ef0af677827deb274d698d06ffa8b73010b0.tar.gz SCons-1321ef0af677827deb274d698d06ffa8b73010b0.tar.bz2 |
Change the default behavior when no arguments are specified to building everything in (or below) the current directory.
Diffstat (limited to 'test/option-u.py')
-rw-r--r-- | test/option-u.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/test/option-u.py b/test/option-u.py index f90e258..1f7df7a 100644 --- a/test/option-u.py +++ b/test/option-u.py @@ -44,11 +44,9 @@ file.close() """) test.write('SConstruct', """ -import SCons.Defaults env = Environment() env['BUILDERS']['B'] = Builder(action=r'%s build.py $TARGET $SOURCES') env.B(target = 'sub1/foo.out', source = 'sub1/foo.in') -Default('.') Export('env') SConscript('sub2/SConscript') env.Alias('baz', env.B(target = 'sub3/baz.out', source = 'sub3/baz.in')) |