BUG: TARGET_QUOTED should always be replaced if Target is set in the rule variables.

This commit is contained in:
Brad King 2006-10-10 14:13:35 -04:00
parent f0c79a0030
commit 86dd8579c5

View File

@ -819,8 +819,8 @@ cmLocalGenerator::ExpandRuleVariable(std::string const& variable,
targetQuoted = '\"'; targetQuoted = '\"';
targetQuoted += replaceValues.Target; targetQuoted += replaceValues.Target;
targetQuoted += '\"'; targetQuoted += '\"';
return targetQuoted;
} }
return targetQuoted;
} }
if(replaceValues.LanguageCompileFlags) if(replaceValues.LanguageCompileFlags)
{ {