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

Fixed a bug with BOOST_BUILD_PATH not getting set correctly in Boost Build unit tests in case it contained spaces.

[SVN r44991]
This commit is contained in:
Jurko Gospodnetić
2008-05-01 19:47:37 +00:00
parent 21648313a7
commit eff732b908

View File

@@ -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: