1diff --git a/loader/BinaryFileFactory.cpp b/loader/BinaryFileFactory.cpp
2index 889a4ed..ca86765 100644
3--- a/loader/BinaryFileFactory.cpp
4+++ b/loader/BinaryFileFactory.cpp
5@@ -109,7 +109,7 @@ BinaryFile* BinaryFileFactory::getInstanceFor( const char *sName ) {
6
7 // Load the specific loader library
8 #ifndef _WIN32 // Cygwin, Unix/Linux
9- libName = std::string("lib/lib") + libName;
10+ libName = std::string("lib") + libName;
11 #ifdef __CYGWIN__
12 libName += ".dll"; // Cygwin wants .dll, but is otherwise like Unix
13 #else