Skip to content
Snippets Groups Projects
Commit 78ad5d8f authored by Bill Hoffman's avatar Bill Hoffman
Browse files

Fix install test fail on mingw

parent b8d6cf89
No related branches found
No related tags found
No related merge requests found
......@@ -1249,6 +1249,14 @@ 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
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment