From: Mikko Rasa Date: Fri, 5 Jan 2024 14:24:47 +0000 (+0200) Subject: Process transitive dependencies for buildable dependencies too X-Git-Url: https://git.tdb.fi/?a=commitdiff_plain;h=d24b60a2000ee743df8079b71f95d3da5c3f5ea9;p=builder.git Process transitive dependencies for buildable dependencies too They may get resolved to an installed location. --- diff --git a/source/lib/target.cpp b/source/lib/target.cpp index 0d823ee..b7aa0dc 100644 --- a/source/lib/target.cpp +++ b/source/lib/target.cpp @@ -52,8 +52,7 @@ bool Target::find_transitive_dependencies() { vector found_deps; for(Target *d: depends) - if(!d->is_buildable()) - find_transitive_dependencies(*d, found_deps); + find_transitive_dependencies(*d, found_deps); bool any_added = false; for(Target *d: found_deps)