Makefiles: Use string overload of ConvertToOutputForExisting
The string is already determined so, no need to call the overload to determine it again.
This commit is contained in:
parent
0bbdbd95c9
commit
e3ca17e13b
|
@ -2073,7 +2073,7 @@ void cmLocalUnixMakefileGenerator3::CreateCDCommand(
|
|||
|
||||
// Change back to the starting directory.
|
||||
cmd = cd_cmd;
|
||||
cmd += this->ConvertToOutputForExisting(relRetDir);
|
||||
cmd += this->ConvertToOutputForExisting(relDir);
|
||||
commands.push_back(cmd);
|
||||
} else {
|
||||
// On UNIX we must construct a single shell command to change
|
||||
|
|
Loading…
Reference in New Issue