mirror of
https://github.com/reactos/CMake.git
synced 2025-02-04 02:47:29 +00:00
Makefiles: Rename local variable
In this context, 'ret' means 'return', but I don't really know what that means. It is not consistent with types and other variables used in the vicinity for these things.
This commit is contained in:
parent
9440d5776b
commit
0bbdbd95c9
@ -2048,10 +2048,10 @@ void cmLocalUnixMakefileGenerator3::CreateCDCommand(
|
||||
std::vector<std::string>& commands, const char* tgtDir,
|
||||
cmOutputConverter::RelativeRoot relRetDir)
|
||||
{
|
||||
const char* retDir = this->GetRelativeRootPath(relRetDir);
|
||||
const char* relDir = this->GetRelativeRootPath(relRetDir);
|
||||
|
||||
// do we need to cd?
|
||||
if (!strcmp(tgtDir, retDir)) {
|
||||
if (!strcmp(tgtDir, relDir)) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user