diff options
author | Brad King <brad.king@kitware.com> | 2014-01-20 15:59:21 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2014-01-20 15:59:21 (GMT) |
commit | 325f851403911f1f3d17d1728092fa3da18e5254 (patch) | |
tree | 7e7b35d59c6b25e673386990b2cd17b2eecdeffe | |
parent | 25d414625a4ff4fe1bf5314370e8fa87cb08cdba (diff) | |
parent | e02cdba0549f64ee86ba5b059135d52b74c1f70f (diff) | |
download | CMake-325f851403911f1f3d17d1728092fa3da18e5254.zip CMake-325f851403911f1f3d17d1728092fa3da18e5254.tar.gz CMake-325f851403911f1f3d17d1728092fa3da18e5254.tar.bz2 |
Merge topic 'KateDontRequireVariable'
e02cdba0 Kate: use cmMakefile::GetSafeDefinition() for a not-required variable
-rw-r--r-- | Source/cmExtraKateGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmExtraKateGenerator.cxx b/Source/cmExtraKateGenerator.cxx index 0312488..d0f83b2 100644 --- a/Source/cmExtraKateGenerator.cxx +++ b/Source/cmExtraKateGenerator.cxx @@ -70,7 +70,7 @@ void cmExtraKateGenerator::CreateKateProjectFile(const cmMakefile* mf) const } std::string make = mf->GetRequiredDefinition("CMAKE_MAKE_PROGRAM"); - std::string args = mf->GetRequiredDefinition("CMAKE_KATE_MAKE_ARGUMENTS"); + std::string args = mf->GetSafeDefinition("CMAKE_KATE_MAKE_ARGUMENTS"); fout << "{\n" |