diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-05-18 02:54:27 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2015-05-20 15:21:10 (GMT) |
commit | e54d2fdf50d7e1170f9e3dcbcb62ebacc7205de6 (patch) | |
tree | b5e745176d5c70cd1099ef5f3506ea7e4280b57c /Source/cmLocalGenerator.cxx | |
parent | 20c2fe4d10ac72b8352bdbea361124296a515d6c (diff) | |
download | CMake-e54d2fdf50d7e1170f9e3dcbcb62ebacc7205de6.zip CMake-e54d2fdf50d7e1170f9e3dcbcb62ebacc7205de6.tar.gz CMake-e54d2fdf50d7e1170f9e3dcbcb62ebacc7205de6.tar.bz2 |
Convert: Remove specification of default parameter.
Diffstat (limited to 'Source/cmLocalGenerator.cxx')
-rw-r--r-- | Source/cmLocalGenerator.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmLocalGenerator.cxx b/Source/cmLocalGenerator.cxx index 0c56838..c2e996c 100644 --- a/Source/cmLocalGenerator.cxx +++ b/Source/cmLocalGenerator.cxx @@ -1838,7 +1838,7 @@ void cmLocalGenerator::OutputLinkLibraries(std::string& linkLibraries, fdi != fwDirs.end(); ++fdi) { frameworkPath += fwSearchFlag; - frameworkPath += this->Convert(*fdi, NONE, shellFormat, false); + frameworkPath += this->Convert(*fdi, NONE, shellFormat); frameworkPath += " "; } } @@ -1892,7 +1892,7 @@ void cmLocalGenerator::OutputLinkLibraries(std::string& linkLibraries, ri != runtimeDirs.end(); ++ri) { rpath += cli.GetRuntimeFlag(); - rpath += this->Convert(*ri, NONE, shellFormat, false); + rpath += this->Convert(*ri, NONE, shellFormat); rpath += " "; } fout << rpath; |