summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalGenerator.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2010-06-15 17:58:58 (GMT)
committerBrad King <brad.king@kitware.com>2010-06-15 17:58:58 (GMT)
commitd9b2da139dc4ca145551861c3b2369c5d1bda980 (patch)
tree8bef5d85d5efa4c344b7ebbbdf8d69991f6d4e52 /Source/cmLocalGenerator.cxx
parentd714b18ac5f415e15c5e03bf8f6aaeaf45e143f5 (diff)
parent00477de1c92d94e78cebdaf6c29ff2847207f454 (diff)
downloadCMake-d9b2da139dc4ca145551861c3b2369c5d1bda980.zip
CMake-d9b2da139dc4ca145551861c3b2369c5d1bda980.tar.gz
CMake-d9b2da139dc4ca145551861c3b2369c5d1bda980.tar.bz2
Merge branch 'mingw-response-files'
Diffstat (limited to 'Source/cmLocalGenerator.cxx')
-rw-r--r--Source/cmLocalGenerator.cxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmLocalGenerator.cxx b/Source/cmLocalGenerator.cxx
index fd3508e..13d875f 100644
--- a/Source/cmLocalGenerator.cxx
+++ b/Source/cmLocalGenerator.cxx
@@ -2249,6 +2249,10 @@ std::string cmLocalGenerator::ConvertToOutputFormat(const char* source,
}
result = this->EscapeForShell(result.c_str(), true, false);
}
+ else if(output == RESPONSE)
+ {
+ result = this->EscapeForShell(result.c_str(), false, false);
+ }
return result;
}