about summary refs log tree commit diff
path: root/src/librustpkg/exit_codes.rs
AgeCommit message (Collapse)AuthorLines
2013-09-18rustpkg: Register correct dependencies for built and installed filesTim Chevalier-1/+1
as per #9112 Closes #9112
2013-09-18rustpkg: Make crates, not packages, the unit of rustpkg dependenciesTim Chevalier-0/+11
Treating a package as the thing that can have other packages depend on it, and depends on other packages, was wrong if a package has more than one crate. Now, rustpkg knows about dependencies between crates in the same package. This solves the problem reported in #7879 where rustpkg wrongly discovered a circular dependency between thhe package and itself, and recursed infinitely. Closes #7879