Convert: Remove obsolete MAKERULE enum value
This commit is contained in:
parent
1825f876a7
commit
dc95020efa
|
@ -78,9 +78,7 @@ std::string cmOutputConverter::ConvertToOutputFormat(const std::string& source,
|
|||
{
|
||||
std::string result = source;
|
||||
// Convert it to an output path.
|
||||
if (output == MAKERULE) {
|
||||
result = cmSystemTools::ConvertToOutputPath(result.c_str());
|
||||
} else if (output == SHELL || output == WATCOMQUOTE) {
|
||||
if (output == SHELL || output == WATCOMQUOTE) {
|
||||
result = this->ConvertDirectorySeparatorsForShell(source);
|
||||
result = this->EscapeForShell(result, true, false, output == WATCOMQUOTE);
|
||||
} else if (output == RESPONSE) {
|
||||
|
|
|
@ -45,7 +45,6 @@ public:
|
|||
};
|
||||
enum OutputFormat
|
||||
{
|
||||
MAKERULE,
|
||||
SHELL,
|
||||
WATCOMQUOTE,
|
||||
RESPONSE
|
||||
|
|
Loading…
Reference in New Issue