summaryrefslogtreecommitdiffstats
path: root/etc/Conscript
diff options
context:
space:
mode:
Diffstat (limited to 'etc/Conscript')
-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");
- }
-}