ERR: Removed unused variable.
This commit is contained in:
parent
7155d1f68b
commit
c025838c73
|
@ -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;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue