summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2001-04-17 11:42:33 (GMT)
committerBrad King <brad.king@kitware.com>2001-04-17 11:42:33 (GMT)
commitc025838c73891917fbc4affc298476cba246b0f9 (patch)
tree6433a0e1831b481e98b770d57883609967efb6fe /Source
parent7155d1f68b5823d7b5eacdfbbb75eeca347bbfc1 (diff)
downloadCMake-c025838c73891917fbc4affc298476cba246b0f9.zip
CMake-c025838c73891917fbc4affc298476cba246b0f9.tar.gz
CMake-c025838c73891917fbc4affc298476cba246b0f9.tar.bz2
ERR: Removed unused variable.
Diffstat (limited to 'Source')
-rw-r--r--Source/cmUnixMakefileGenerator.cxx2
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;
}
}