diff options
author | Brad King <brad.king@kitware.com> | 2006-10-10 18:13:35 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2006-10-10 18:13:35 (GMT) |
commit | 86dd8579c557f2261cff75bd155f2d10e6aec80d (patch) | |
tree | c10ef79c691d2ca74cfbb641798e0e9b2e021d53 /Source/cmLocalGenerator.cxx | |
parent | f0c79a00309da0e3709284fa8d1de486b07a1c71 (diff) | |
download | CMake-86dd8579c557f2261cff75bd155f2d10e6aec80d.zip CMake-86dd8579c557f2261cff75bd155f2d10e6aec80d.tar.gz CMake-86dd8579c557f2261cff75bd155f2d10e6aec80d.tar.bz2 |
BUG: TARGET_QUOTED should always be replaced if Target is set in the rule variables.
Diffstat (limited to 'Source/cmLocalGenerator.cxx')
-rw-r--r-- | Source/cmLocalGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmLocalGenerator.cxx b/Source/cmLocalGenerator.cxx index 545b4ca..d4a3f68 100644 --- a/Source/cmLocalGenerator.cxx +++ b/Source/cmLocalGenerator.cxx @@ -819,8 +819,8 @@ cmLocalGenerator::ExpandRuleVariable(std::string const& variable, targetQuoted = '\"'; targetQuoted += replaceValues.Target; targetQuoted += '\"'; - return targetQuoted; } + return targetQuoted; } if(replaceValues.LanguageCompileFlags) { |