Convert: Remove obsolete MAKERULE enum value

This commit is contained in:
Stephen Kelly 2016-08-27 18:10:25 +02:00
parent 1825f876a7
commit dc95020efa
2 changed files with 1 additions and 4 deletions

View File

@ -78,9 +78,7 @@ std::string cmOutputConverter::ConvertToOutputFormat(const std::string& source,
{ {
std::string result = source; std::string result = source;
// Convert it to an output path. // Convert it to an output path.
if (output == MAKERULE) { if (output == SHELL || output == WATCOMQUOTE) {
result = cmSystemTools::ConvertToOutputPath(result.c_str());
} else if (output == SHELL || output == WATCOMQUOTE) {
result = this->ConvertDirectorySeparatorsForShell(source); result = this->ConvertDirectorySeparatorsForShell(source);
result = this->EscapeForShell(result, true, false, output == WATCOMQUOTE); result = this->EscapeForShell(result, true, false, output == WATCOMQUOTE);
} else if (output == RESPONSE) { } else if (output == RESPONSE) {

View File

@ -45,7 +45,6 @@ public:
}; };
enum OutputFormat enum OutputFormat
{ {
MAKERULE,
SHELL, SHELL,
WATCOMQUOTE, WATCOMQUOTE,
RESPONSE RESPONSE