From 1839e3df52fe8e99b75bbf4cc132d78b9b4e73a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jurko=20Gospodneti=C4=87?= Date: Thu, 30 Aug 2012 14:07:42 +0000 Subject: [PATCH] Internal Boost Jam cleanup - corrected the make1.c module's make1cmds() function description comment to note that the commands it creates have already had any variable references embedded in them processed instead of still needing processing using some no longer existing var_string() function. [SVN r80322] --- v2/engine/make1.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/v2/engine/make1.c b/v2/engine/make1.c index 589665a6d..2c9797f18 100644 --- a/v2/engine/make1.c +++ b/v2/engine/make1.c @@ -944,8 +944,9 @@ static void swap_settings * * Essentially copies a chain of ACTIONs to a chain of CMDs, grouping * RULE_TOGETHER actions, splitting RULE_PIECEMEAL actions, and handling - * RULE_NEWSRCS actions. The result is a chain of CMDs which can be expanded by - * var_string() and executed using exec_cmd(). + * RULE_NEWSRCS actions. The result is a chain of CMDs which has already had all + * of its embedded variable references expanded and can now be executed using + * exec_cmd(). */ static CMD * make1cmds( TARGET * t )