From e46cbd6a2f8a267563949e7285097b4ddcef8a78 Mon Sep 17 00:00:00 2001 From: Vladimir Prus Date: Wed, 21 Jul 2010 11:04:12 +0000 Subject: [PATCH] Fix search for Boost.Jam in Boost.Build testing [SVN r64217] --- v2/test/BoostBuild.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/v2/test/BoostBuild.py b/v2/test/BoostBuild.py index 612ede70b..1a6169db5 100644 --- a/v2/test/BoostBuild.py +++ b/v2/test/BoostBuild.py @@ -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):