From 7ec865e5bc761bfa9af6bbbfaf6762100fd8785f Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Sat, 12 Apr 2008 19:44:47 +0000 Subject: [PATCH] Add multiple requirements for toolset subconditions instead of one composite as they are not supported for conditional requirements. Thanks to Roland for finding the problem. [SVN r44354] --- v2/tools/common.jam | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/v2/tools/common.jam b/v2/tools/common.jam index 5a1b866a9..7cb5cbff7 100644 --- a/v2/tools/common.jam +++ b/v2/tools/common.jam @@ -227,7 +227,8 @@ rule check-init-parameters ( toolset requirement * : * ) if $(requirement) { local r = $(toolset) $(requirement) ; - toolset.add-requirements $(r:J=,):$(subcondition:J=/) ; + r = $(r:J=,) ; + toolset.add-requirements $(r):$(subcondition) ; } # We add the requirements, if any, to the condition to scope the toolset