summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-09-17 23:42:45 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-09-18 17:41:47 (GMT)
commitb5de2bd9dea2d1b7bd2c128e0b1dff0f3bbda02b (patch)
tree07b37e0141abbdfb12d7d5724fa805ec2a203c95
parente3ace61212db5c960132ef0868f49cf05fe1c021 (diff)
downloadCMake-b5de2bd9dea2d1b7bd2c128e0b1dff0f3bbda02b.zip
CMake-b5de2bd9dea2d1b7bd2c128e0b1dff0f3bbda02b.tar.gz
CMake-b5de2bd9dea2d1b7bd2c128e0b1dff0f3bbda02b.tar.bz2
cmLocalGenerator: Simplify condition.
This API is only called after configure-time.
-rw-r--r--Source/cmLocalGenerator.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmLocalGenerator.cxx b/Source/cmLocalGenerator.cxx
index 97a9f1e..4418ead 100644
--- a/Source/cmLocalGenerator.cxx
+++ b/Source/cmLocalGenerator.cxx
@@ -2850,7 +2850,7 @@ cmIML_INT_uint64_t cmLocalGenerator::GetBackwardsCompatibility()
}
}
this->BackwardsCompatibility = CMake_VERSION_ENCODE(major, minor, patch);
- this->BackwardsCompatibilityFinal = this->Makefile->IsConfigured();
+ this->BackwardsCompatibilityFinal = true;
}
return this->BackwardsCompatibility;