diff options
Diffstat (limited to 'etc')
-rw-r--r-- | etc/Conscript | 5 | ||||
-rw-r--r-- | etc/TestSCons.py | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/etc/Conscript b/etc/Conscript index c1a7942..3f030a7 100644 --- a/etc/Conscript +++ b/etc/Conscript @@ -8,4 +8,7 @@ Import qw( env ); @modules = qw(TestCmd.py TestSCons.py unittest.py); -$env->Install($env->{TEST_LIB_DIR}, @modules); +foreach $module (@modules) { + $env->Command(File::Spec->catfile($env->{TEST_LIB_DIR}, $module), + $module, "%SEDCOM"); +} diff --git a/etc/TestSCons.py b/etc/TestSCons.py index dcd462a..41a0ef0 100644 --- a/etc/TestSCons.py +++ b/etc/TestSCons.py @@ -13,7 +13,7 @@ or attributes defined in this subclass. # Copyright 2001 Steven Knight -__revision__ = "TestSCons.py __REVISION__ __DATE__ __DEVELOPER__" +__revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__" import os import TestCmd |