cmMakefile: Remove use of intermediate variable.
This commit is contained in:
parent
bdd4c5f5ba
commit
2d6121a9a7
|
@ -566,9 +566,9 @@ bool cmMakefile::ReadListFile(const char* filename_in,
|
|||
const char *filenametoread = filename;
|
||||
|
||||
// keep track of the current file being read
|
||||
if (filename)
|
||||
if (filenametoread)
|
||||
{
|
||||
this->cmCurrentListFile = filename;
|
||||
this->cmCurrentListFile = filenametoread;
|
||||
}
|
||||
|
||||
if(external_in)
|
||||
|
|
Loading…
Reference in New Issue