diff options
author | Steven Knight <knight@baldmt.com> | 2001-11-28 03:30:53 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2001-11-28 03:30:53 (GMT) |
commit | ad78319ad3ede8f7065f9c945a3585cad04c3731 (patch) | |
tree | bf4e6fb4c27ddbb0d2d2ce54f79f0a8d80c723c1 /runtest.py | |
parent | f5b84fd3af7d8e3b3d4570dcf40220c96f67d16e (diff) | |
download | SCons-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.py | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -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') |