From d430ad35c4ef38bea4c8fb639f8267371f1848e7 Mon Sep 17 00:00:00 2001 From: David Fowler Date: Sun, 1 Nov 2015 01:25:10 -0700 Subject: [PATCH] Fixed bug resolving native search paths --- src/corehost/src/tpafile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/corehost/src/tpafile.cpp b/src/corehost/src/tpafile.cpp index f624b510d..e36f4b496 100644 --- a/src/corehost/src/tpafile.cpp +++ b/src/corehost/src/tpafile.cpp @@ -222,7 +222,7 @@ void tpafile::write_native_paths(pal::string_t& output) append_path(candidate, entry.library_name.c_str()); append_path(candidate, entry.library_version.c_str()); - append_path(candidate, entry.relative_path.c_str()); + append_path(candidate, get_directory(entry.relative_path).c_str()); if (pal::file_exists(candidate)) {