I have two projects under the boost build system:
Jamroot
-- ProjH
-- Jamfile
-- ProjL
--Jamfile
ProjH depends on ProjL. From some reason when I remove the bin directory from projH and I build it a part of projL is rebuilt as well each time I rebuild projH.
What are the options to debug this?
So far I tried running bjam with --debug-building and comparing build requirements when building ProjL directly and when building as ProjH dependency. They seem the same, the only difference is in include paths - when building as a dependency, they are relative to ProjH. But if this was the problem I suppose that ProjL would be built only once, not after each rebuild of ProjH.