Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Handle runtime deps of build deps properly
Previously, if a build-only dependency had runtime dependencies, those would be added to the toplevel package's runtime dependencies. For example, the graph: jq --(build)--> oniguruma --(runtime)--> GCC-Toolchain ...meant that GCC-Toolchain was added as a runtime dependency of jq, which is undesirable. This commit fixes that, so that runtime deps of build deps are treated like build deps instead.
- Loading branch information