From: Mikko Rasa Date: Sun, 12 Mar 2023 13:06:10 +0000 (+0200) Subject: Remove the include path for used local components X-Git-Url: http://git.tdb.fi/?a=commitdiff_plain;h=f4de41c810319d3ecc8bb5084de06a953037b7b7;p=builder.git 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. --- 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()) {