Browse Source

cmMakefile: Change condition to its equivalent.

This makes it easier to reason about follow-up commits.
Stephen Kelly 10 years ago
parent
commit
524ce89542
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Source/cmMakefile.cxx

+ 1 - 1
Source/cmMakefile.cxx

@@ -572,7 +572,7 @@ bool cmMakefile::ReadListFile(const char* filename_in,
   // Now read the input file
   const char *filenametoread= filename;
 
-  if( external)
+  if(external_in)
     {
     filenametoread= external;
     }