cmMakefile: Remove use of intermediate variable.

This commit is contained in:
Stephen Kelly 2015-04-18 14:50:34 +02:00
parent bdd4c5f5ba
commit 2d6121a9a7
1 changed files with 2 additions and 2 deletions

View File

@ -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)