summaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2001-11-16 22:06:52 (GMT)
committerSteven Knight <knight@baldmt.com>2001-11-16 22:06:52 (GMT)
commit76166c77f852377b6139a9414cc355fe2661a0e7 (patch)
treefe77db2a491d0f8f0aa6c743c1e1f5b21a1914ed /etc
parent9508d219188fcd2ad8eb2d24606d1b9c611e9ed2 (diff)
downloadSCons-76166c77f852377b6139a9414cc355fe2661a0e7.zip
SCons-76166c77f852377b6139a9414cc355fe2661a0e7.tar.gz
SCons-76166c77f852377b6139a9414cc355fe2661a0e7.tar.bz2
Add the scons package.
Diffstat (limited to 'etc')
-rw-r--r--etc/Conscript5
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");
+ }
}