2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-16 13:22:11 +00:00

Fix search for Boost.Jam in Boost.Build testing

[SVN r64217]
This commit is contained in:
Vladimir Prus
2010-07-21 11:04:12 +00:00
parent 318020a079
commit e46cbd6a2f

View File

@@ -244,8 +244,8 @@ class Tester(TestCmd.TestCmd):
# Find where jam_src is located. Try for the debug version if it is
# lying around.
dirs = [os.path.join('../../../jam/src', jam_build_dir + '.debug'),
os.path.join('../../../jam/src', jam_build_dir),
dirs = [os.path.join('../engine/src', jam_build_dir + '.debug'),
os.path.join('../engine/src', jam_build_dir),
]
for d in dirs:
if os.path.exists(d):