summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-04-18 12:50:33 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-04-18 13:29:18 (GMT)
commit524ce895427557312eef52d837f0afdb39a0dab6 (patch)
tree62a6ad5dc5ea1b8719d38849c6130ed0f76354f4 /Source
parent813cd719c41b05df7a22ad3ebd267cc9bfc2505e (diff)
downloadCMake-524ce895427557312eef52d837f0afdb39a0dab6.zip
CMake-524ce895427557312eef52d837f0afdb39a0dab6.tar.gz
CMake-524ce895427557312eef52d837f0afdb39a0dab6.tar.bz2
cmMakefile: Change condition to its equivalent.
This makes it easier to reason about follow-up commits.
Diffstat (limited to 'Source')
-rw-r--r--Source/cmMakefile.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx
index dafbfef..bb0b8cb 100644
--- a/Source/cmMakefile.cxx
+++ b/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;
}