diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-01-11 16:43:44 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2015-01-12 15:30:43 (GMT) |
commit | 2bead0eb1b605cc5d0db23d9af00087277157921 (patch) | |
tree | 13827e04732e818f9aa0f153a238b88d8f88a245 /Source/cmGeneratorExpressionEvaluator.cxx | |
parent | 62b19984039235d5325ee1ad6a7643a4ccd696a8 (diff) | |
download | CMake-2bead0eb1b605cc5d0db23d9af00087277157921.zip CMake-2bead0eb1b605cc5d0db23d9af00087277157921.tar.gz CMake-2bead0eb1b605cc5d0db23d9af00087277157921.tar.bz2 |
cmMakefile: Rename a method to what it really does.
The method does not test availability of compile features.
Diffstat (limited to 'Source/cmGeneratorExpressionEvaluator.cxx')
-rw-r--r-- | Source/cmGeneratorExpressionEvaluator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGeneratorExpressionEvaluator.cxx b/Source/cmGeneratorExpressionEvaluator.cxx index 84a4daa..9ffe9f2 100644 --- a/Source/cmGeneratorExpressionEvaluator.cxx +++ b/Source/cmGeneratorExpressionEvaluator.cxx @@ -1376,7 +1376,7 @@ static const struct CompileFeaturesNode : public cmGeneratorExpressionNode for (std::vector<std::string>::const_iterator it = lit->second.begin(); it != lit->second.end(); ++it) { - if (!context->Makefile->HaveFeatureAvailable(target, + if (!context->Makefile->HaveStandardAvailable(target, lit->first, *it)) { if (evalLL) |