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