cmMakefile: Remove useless condition.

This commit is contained in:
Stephen Kelly 2015-04-18 14:50:32 +02:00
parent a2f2aeee2f
commit 846608f267
1 changed files with 1 additions and 4 deletions

View File

@ -572,12 +572,9 @@ bool cmMakefile::ReadListFile(const char* filename_in,
// keep track of the current file being read
if (filename)
{
if(this->cmCurrentListFile != filename)
{
this->cmCurrentListFile = filename;
}
}
// Now read the input file
const char *filenametoread= filename;