]> git.proxmox.com Git - cargo.git/commit
Auto merge of #6473 - Eh2406:rustc-0, r=alexcrichton
authorbors <bors@rust-lang.org>
Fri, 21 Dec 2018 20:07:17 +0000 (20:07 +0000)
committerbors <bors@rust-lang.org>
Fri, 21 Dec 2018 20:07:17 +0000 (20:07 +0000)
commitb61f3cc66ba3ba1d50ef0eecf768f3b1719a60db
tree4deadccb122da12ec52a12de7d271bc6ec1dad9e
parent1dff476dcadbf5878d640a732037d931879ed209
parenteb8720a54cd82137a4c2b2ead3a43321f32c0c3c
Auto merge of #6473 - Eh2406:rustc-0, r=alexcrichton

don't write a an incorrect rustc version to the fingerprint file

In making https://github.com/holmgr/cargo-sweep/pull/14 I noted that some fingerprint files related to build scripts report being built with a rustc that hashes to "0". To work around this I just marked them as still being needed, even though no rustc that hashes to "0" is currently installed.

I believe that this PR just filles in the correct info for the build script fingerprints. This makes it possible for outside tools to more reliably clean up after cargo, at basically no cost.
@ehuss Thanks again for the help.