From 378849f41e574e72c577b549dfc2d5333ca8f9b5 Mon Sep 17 00:00:00 2001 From: Stephen Kelly Date: Sun, 9 Oct 2016 10:47:43 +0200 Subject: Makefiles: Replace array access with local variable --- Source/cmLocalUnixMakefileGenerator3.cxx | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/Source/cmLocalUnixMakefileGenerator3.cxx b/Source/cmLocalUnixMakefileGenerator3.cxx index 5b4ecc7..eebab68 100644 --- a/Source/cmLocalUnixMakefileGenerator3.cxx +++ b/Source/cmLocalUnixMakefileGenerator3.cxx @@ -995,14 +995,15 @@ void cmLocalUnixMakefileGenerator3::AppendCustomCommand( std::string output; const std::vector& 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(); -- cgit v0.12