diff options
author | Steven Knight <knight@baldmt.com> | 2001-11-16 22:06:52 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2001-11-16 22:06:52 (GMT) |
commit | 76166c77f852377b6139a9414cc355fe2661a0e7 (patch) | |
tree | fe77db2a491d0f8f0aa6c743c1e1f5b21a1914ed /etc | |
parent | 9508d219188fcd2ad8eb2d24606d1b9c611e9ed2 (diff) | |
download | SCons-76166c77f852377b6139a9414cc355fe2661a0e7.zip SCons-76166c77f852377b6139a9414cc355fe2661a0e7.tar.gz SCons-76166c77f852377b6139a9414cc355fe2661a0e7.tar.bz2 |
Add the scons package.
Diffstat (limited to 'etc')
-rw-r--r-- | etc/Conscript | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/etc/Conscript b/etc/Conscript index 3f030a7..552ab26 100644 --- a/etc/Conscript +++ b/etc/Conscript @@ -9,6 +9,7 @@ Import qw( env ); @modules = qw(TestCmd.py TestSCons.py unittest.py); foreach $module (@modules) { - $env->Command(File::Spec->catfile($env->{TEST_LIB_DIR}, $module), - $module, "%SEDCOM"); + for $dir ($env->{TEST1_LIB_DIR}, $env->{TEST2_LIB_DIR}) { + $env->Command(File::Spec->catfile($dir, $module), $module, "%SEDCOM"); + } } |