From c025838c73891917fbc4affc298476cba246b0f9 Mon Sep 17 00:00:00 2001 From: Brad King Date: Tue, 17 Apr 2001 07:42:33 -0400 Subject: [PATCH] ERR: Removed unused variable. --- Source/cmUnixMakefileGenerator.cxx | 2 -- 1 file changed, 2 deletions(-) diff --git a/Source/cmUnixMakefileGenerator.cxx b/Source/cmUnixMakefileGenerator.cxx index 8e670004e..c1d49589c 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; } }