diff options
-rw-r--r-- | Source/cmUnixMakefileGenerator.cxx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Source/cmUnixMakefileGenerator.cxx b/Source/cmUnixMakefileGenerator.cxx index 8e67000..c1d4958 100644 --- a/Source/cmUnixMakefileGenerator.cxx +++ b/Source/cmUnixMakefileGenerator.cxx @@ -221,7 +221,6 @@ void cmUnixMakefileGenerator::OutputDependencies(std::ostream& fout) // the executable for(lib = libs.begin(); lib != libs.end(); ++lib) { - bool found = false; // loop over the list of directories that the libraries might // be in, looking for an ADD_LIBRARY(lib...) line. This would // be stored in the cache @@ -234,7 +233,6 @@ void cmUnixMakefileGenerator::OutputDependencies(std::ostream& fout) libpath += *lib; libpath += "${CMAKE_LIB_EXT}"; fout << libpath << " "; - found = true; } } |