summaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2002-04-29 14:35:35 (GMT)
committerSteven Knight <knight@baldmt.com>2002-04-29 14:35:35 (GMT)
commita2d5a170cc1f83e0b4d738e23e4a9952e17be24f (patch)
treeae4a73349f9d6f7f28dde68876e0158af45a6551 /etc
parented580001466a51a8bb8cf16f15e858d02866fb88 (diff)
downloadSCons-a2d5a170cc1f83e0b4d738e23e4a9952e17be24f.zip
SCons-a2d5a170cc1f83e0b4d738e23e4a9952e17be24f.tar.gz
SCons-a2d5a170cc1f83e0b4d738e23e4a9952e17be24f.tar.bz2
Doc and README/RELEASE updates in preparation for eventual 0.07 release. (Later this week?)
Diffstat (limited to 'etc')
-rw-r--r--etc/Conscript15
1 files changed, 0 insertions, 15 deletions
diff --git a/etc/Conscript b/etc/Conscript
deleted file mode 100644
index 552ab26..0000000
--- a/etc/Conscript
+++ /dev/null
@@ -1,15 +0,0 @@
-#
-# Conscript for installing auxiliary modules, external stuff that
-# we keep checked in so everyone doesn't have to install a bunch
-# of stuff to work on SCons.
-#
-
-Import qw( env );
-
-@modules = qw(TestCmd.py TestSCons.py unittest.py);
-
-foreach $module (@modules) {
- for $dir ($env->{TEST1_LIB_DIR}, $env->{TEST2_LIB_DIR}) {
- $env->Command(File::Spec->catfile($dir, $module), $module, "%SEDCOM");
- }
-}