From f4de41c810319d3ecc8bb5084de06a953037b7b7 Mon Sep 17 00:00:00 2001 From: Mikko Rasa Date: Sun, 12 Mar 2023 15:06:10 +0200 Subject: [PATCH] Remove the include path for used local components Their headers are now installed in the staging directory, which provides a more robust way of including them. --- source/lib/binarycomponent.cpp | 8 -------- 1 file changed, 8 deletions(-) diff --git a/source/lib/binarycomponent.cpp b/source/lib/binarycomponent.cpp index c626536..408ea46 100644 --- a/source/lib/binarycomponent.cpp +++ b/source/lib/binarycomponent.cpp @@ -14,14 +14,6 @@ void BinaryComponent::create_build_info() for(const Component *u: uses) { - /* Select an include path that contains all the sources for this and the - used component. This should produce a sensible result in most cases. */ - FS::Path base; - for(const FS::Path &s: sources) - base = base.empty() ? s : FS::common_ancestor(base, s); - for(const FS::Path &s: u->get_sources()) - base = FS::common_ancestor(base, s); - build_info.incpath.push_back(base); build_info.libs.push_back(u->get_name()); if(!u->get_install()) { -- 2.45.2