From eff732b908f3c0f777905c81fbe4e25c1c92e58d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jurko=20Gospodneti=C4=87?= Date: Thu, 1 May 2008 19:47:37 +0000 Subject: [PATCH] Fixed a bug with BOOST_BUILD_PATH not getting set correctly in Boost Build unit tests in case it contained spaces. [SVN r44991] --- test/BoostBuild.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/BoostBuild.py b/test/BoostBuild.py index 38348d2bb..ee2a559b3 100644 --- a/test/BoostBuild.py +++ b/test/BoostBuild.py @@ -269,7 +269,7 @@ class Tester(TestCmd.TestCmd): else: program_list.append(os.path.join(jam_build_dir, executable)) inpath_bjam = None - program_list.append('-sBOOST_BUILD_PATH=' + boost_build_path) + program_list.append('-sBOOST_BUILD_PATH="' + boost_build_path + '"') if verbosity: program_list += verbosity if arguments: