]> git.proxmox.com Git - cargo.git/commit
Auto merge of #2730 - alexcrichton:fix-panic-abort-build-script, r=alexcrichton
authorbors <bors@rust-lang.org>
Mon, 23 May 2016 20:49:01 +0000 (13:49 -0700)
committerbors <bors@rust-lang.org>
Mon, 23 May 2016 20:49:01 +0000 (13:49 -0700)
commitca743f3118532e7fc5f74938801ebac369665c89
tree4c83fb88a59112a6be41c099f8afe184a6be2752
parent259324cd8f9bb6e1068a3a2b77685e90fda3e3b6
parent183c59c0b3b953ac4a672a91f8b6c930911f7c16
Auto merge of #2730 - alexcrichton:fix-panic-abort-build-script, r=alexcrichton

Fix build scripts and panic=abort

Build scripts were apparently always compiled with the "dev" profile rather than
the standard "match whatever the normal build was" profile, which meant that if
dev/release disagreed on panic=abort you'd get compile errors. Seems bad!

This commit fixes this by just having build scripts always compile with the same
profile as libraries (for now), as this was the original intention anyway.

Closes #2726