diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-09-17 23:42:45 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-09-18 17:41:47 (GMT) |
commit | b5de2bd9dea2d1b7bd2c128e0b1dff0f3bbda02b (patch) | |
tree | 07b37e0141abbdfb12d7d5724fa805ec2a203c95 | |
parent | e3ace61212db5c960132ef0868f49cf05fe1c021 (diff) | |
download | CMake-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.cxx | 2 |
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; |