From 257272aad728b8d58913d712e7d614469f5bb3ef Mon Sep 17 00:00:00 2001 From: Jon Parise Date: Thu, 30 Jan 2003 00:41:21 +0000 Subject: [PATCH] Parise makes #forscopes accept a variable --- ppremake/ppCommandFile.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ppremake/ppCommandFile.cxx b/ppremake/ppCommandFile.cxx index 5296ec4b4f..fa57751f4c 100644 --- a/ppremake/ppCommandFile.cxx +++ b/ppremake/ppCommandFile.cxx @@ -1843,7 +1843,7 @@ replay_forscopes(const string &name) { // Extract out the scope names from the #forscopes .. #end name. This // is a space-delimited list of scope names. vector words; - tokenize_whitespace(name, words); + tokenize_whitespace(_scope->expand_string(name), words); // Now build up the list of scopes with these names. PPNamedScopes::Scopes scopes;