*: strip calls to cc::Build::compile

The documentation states: "The name output should be the name of the
library." and this is already done in more recently-added callers.
This commit is contained in:
Tamir Duberstein 2017-11-26 16:43:24 -05:00
parent 9067d9735a
commit 94d02b896c
No known key found for this signature in database
GPG key ID: 1C1E98CC8E17BB89
5 changed files with 5 additions and 5 deletions

View file

@ -27,6 +27,6 @@ fn main() {
.warnings(false)
.include(src_dir)
.warnings(false)
.compile("libhoedown.a");
.compile("hoedown");
}