mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-05 05:11:15 -06:00
Makefiles: Replace array access with local variable
This commit is contained in:
@@ -995,14 +995,15 @@ void cmLocalUnixMakefileGenerator3::AppendCustomCommand(
|
||||
std::string output;
|
||||
const std::vector<std::string>& outputs = ccg.GetOutputs();
|
||||
if (!outputs.empty()) {
|
||||
output = outputs[0];
|
||||
if (workingDir.empty()) {
|
||||
output = this->MaybeConvertToRelativePath(
|
||||
this->GetCurrentBinaryDirectory(), outputs[0]);
|
||||
output = this->ConvertToOutputFormat(output,
|
||||
cmOutputConverter::SHELL);
|
||||
this->GetCurrentBinaryDirectory(), output);
|
||||
output =
|
||||
this->ConvertToOutputFormat(output, cmOutputConverter::SHELL);
|
||||
} else {
|
||||
output = this->ConvertToOutputFormat(outputs[0],
|
||||
cmOutputConverter::SHELL);
|
||||
output =
|
||||
this->ConvertToOutputFormat(output, cmOutputConverter::SHELL);
|
||||
}
|
||||
}
|
||||
vars.Output = output.c_str();
|
||||
|
||||
Reference in New Issue
Block a user