mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-06 05:40:54 -06:00
cmFileCommand: Clarify logic for populating LOG variable
The chunkDebug buffer we use to accumulate the LOG variable content is populated if and only if a log variable was requested by the call, but it is much clearer to check that a log variable was requested explicitly before populating it.
This commit is contained in:
@@ -3287,7 +3287,7 @@ cmFileCommand::HandleDownloadCommand(std::vector<std::string> const& args)
|
||||
}
|
||||
}
|
||||
|
||||
if(!chunkDebug.empty())
|
||||
if (!logVar.empty())
|
||||
{
|
||||
chunkDebug.push_back(0);
|
||||
this->Makefile->AddDefinition(logVar, &*chunkDebug.begin());
|
||||
|
||||
Reference in New Issue
Block a user