summaryrefslogtreecommitdiffstats
path: root/runtest.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2001-11-28 03:30:53 (GMT)
committerSteven Knight <knight@baldmt.com>2001-11-28 03:30:53 (GMT)
commitad78319ad3ede8f7065f9c945a3585cad04c3731 (patch)
treebf4e6fb4c27ddbb0d2d2ce54f79f0a8d80c723c1 /runtest.py
parentf5b84fd3af7d8e3b3d4570dcf40220c96f67d16e (diff)
downloadSCons-ad78319ad3ede8f7065f9c945a3585cad04c3731.zip
SCons-ad78319ad3ede8f7065f9c945a3585cad04c3731.tar.gz
SCons-ad78319ad3ede8f7065f9c945a3585cad04c3731.tar.bz2
Change packaging to the new /usr/lib/scons/ scheme
Diffstat (limited to 'runtest.py')
-rw-r--r--runtest.py9
1 files changed, 8 insertions, 1 deletions
diff --git a/runtest.py b/runtest.py
index dd82b0e..6ac8a6e 100644
--- a/runtest.py
+++ b/runtest.py
@@ -114,7 +114,14 @@ if build == 'aegis':
scons_dir = os.path.join(cwd, 'build', 'test' + str(testver), 'bin')
if testver == 1:
- test_dir = os.path.join('test1', 'lib', 'scons-' + str(version))
+ test_dir = os.path.join('test1', 'lib', 'scons')
+ # Our original packaging scheme placed the build engine
+ # in a private library directory that contained the SCons
+ # version number in the directory name. Here's how this
+ # was supported here. See the Construct file for details
+ # on other files that would need to be changed to support
+ # this as well.
+ #test_dir = os.path.join('test1', 'lib', 'scons-' + str(version))
elif testver == 2:
test_dir = os.path.join('test2', 'lib', 'python' + sys.version[0:3],
'site-packages')