summaryrefslogtreecommitdiffstats
path: root/Source/kwsys
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2004-02-13 15:51:44 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2004-02-13 15:51:44 (GMT)
commitf7ce6549125e645abba5801bbbde235099ba6ee5 (patch)
tree63360776e0afc2c557ecdc840d94318dde1f0b98 /Source/kwsys
parentc44d0ef7333b274db929281aaba7b26146ebfac3 (diff)
downloadCMake-f7ce6549125e645abba5801bbbde235099ba6ee5.zip
CMake-f7ce6549125e645abba5801bbbde235099ba6ee5.tar.gz
CMake-f7ce6549125e645abba5801bbbde235099ba6ee5.tar.bz2
ENH: change mingw to use libfoo.dll instead of foo.dll since it can link to them
Diffstat (limited to 'Source/kwsys')
-rw-r--r--Source/kwsys/SystemTools.cxx8
1 files changed, 0 insertions, 8 deletions
diff --git a/Source/kwsys/SystemTools.cxx b/Source/kwsys/SystemTools.cxx
index 82acc93..ac5c1b0 100644
--- a/Source/kwsys/SystemTools.cxx
+++ b/Source/kwsys/SystemTools.cxx
@@ -1249,14 +1249,6 @@ kwsys_stl::string SystemTools::FindLibrary(const char* name,
{
return SystemTools::CollapseFullPath(tryPath.c_str());
}
- tryPath = *p;
- tryPath += "/";
- tryPath += name;
- tryPath += ".dll";
- if(SystemTools::FileExists(tryPath.c_str()))
- {
- return SystemTools::CollapseFullPath(tryPath.c_str());
- }
#endif
}