ERR: Removed unused variable.

This commit is contained in:
Brad King 2001-04-17 07:42:33 -04:00
parent 7155d1f68b
commit c025838c73
1 changed files with 0 additions and 2 deletions

View File

@ -221,7 +221,6 @@ void cmUnixMakefileGenerator::OutputDependencies(std::ostream& fout)
// the executable // the executable
for(lib = libs.begin(); lib != libs.end(); ++lib) for(lib = libs.begin(); lib != libs.end(); ++lib)
{ {
bool found = false;
// loop over the list of directories that the libraries might // loop over the list of directories that the libraries might
// be in, looking for an ADD_LIBRARY(lib...) line. This would // be in, looking for an ADD_LIBRARY(lib...) line. This would
// be stored in the cache // be stored in the cache
@ -234,7 +233,6 @@ void cmUnixMakefileGenerator::OutputDependencies(std::ostream& fout)
libpath += *lib; libpath += *lib;
libpath += "${CMAKE_LIB_EXT}"; libpath += "${CMAKE_LIB_EXT}";
fout << libpath << " "; fout << libpath << " ";
found = true;
} }
} }