Browse Source

ERR: Removed unused variable.

Brad King 24 years ago
parent
commit
c025838c73
1 changed files with 0 additions and 2 deletions
  1. 0 2
      Source/cmUnixMakefileGenerator.cxx

+ 0 - 2
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;
       }
     }