]> git.lizzy.rs Git - rust.git/commit
Auto merge of #28806 - wthrowe:bare-outfile-fix, r=alexcrichton
authorbors <bors@rust-lang.org>
Sun, 4 Oct 2015 19:50:50 +0000 (19:50 +0000)
committerbors <bors@rust-lang.org>
Sun, 4 Oct 2015 19:50:50 +0000 (19:50 +0000)
commit7f4665c3e683b343fb3a44fd3849b6b140e708d5
treefa9da30de454915541d72f72dc91c08e9d0912ed
parent5ff4442a3f46f7a3ca0dc291727c546c3b6dde8d
parente3df5192258fba79f58a86d1fdcda5f38a816028
Auto merge of #28806 - wthrowe:bare-outfile-fix, r=alexcrichton

The reason this was not failing is fascinating.  The variable $(rustc)
is empty, so the make recipe was expanded as " -o foo foo.rs".  make
interpreted this as an instruction to run the command "o foo foo.rs"
and ignore any failure that occurred, because it uses a leading '-' on
a command to signal that behavior.