summaryrefslogtreecommitdiff
path: root/src/task_ld.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/task_ld.cc')
-rw-r--r--src/task_ld.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/task_ld.cc b/src/task_ld.cc
index 3e05fb1..df50001 100644
--- a/src/task_ld.cc
+++ b/src/task_ld.cc
@@ -87,7 +87,7 @@ int TaskLD::runInner()
auto depFile = dep->targetFile();
if(depFile.extension() == ".so")
{
- args.push_back(std::string("-L") + settings.builddir);
+ args.push_back(std::string("-L") + targetFile().parent_path().string());
auto lib = depFile.stem().string().substr(3); // strip 'lib' prefix
args.push_back(std::string("-l") + lib);
}