From 2611acdbc78657d28d2d4efea06c3b6369882a15 Mon Sep 17 00:00:00 2001 From: Mikko Rasa Date: Sun, 9 Oct 2016 15:08:52 +0300 Subject: [PATCH] Use correct library path for libraries from the containing package --- source/binarycomponent.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/binarycomponent.cpp b/source/binarycomponent.cpp index 09a47fc..565e8bc 100644 --- a/source/binarycomponent.cpp +++ b/source/binarycomponent.cpp @@ -32,7 +32,7 @@ void BinaryComponent::create_build_info() if(!(*i)->get_install()) { build_info.libmodes[(*i)->get_name()] = BuildInfo::STATIC; - build_info.libpath.push_back((*i)->get_package().get_source_directory()); + build_info.libpath.push_back((*i)->get_package().get_output_directory()); } } -- 2.43.0