auto merge of #8976 : alexcrichton/rust/issue-5425, r=pnkfelix

Closes #5425
This commit is contained in:
bors 2013-09-04 03:20:56 -07:00
commit 787f4c986c

View File

@ -616,6 +616,10 @@ fn crate_meta_name(sess: Session, output: &Path, opt_name: Option<@str>)
|| fmt!("output file name `%s` doesn't\
appear to have a stem",
output.to_str())).to_managed();
if name.is_empty() {
sess.fatal("missing crate link meta `name`, and the \
inferred name is blank");
}
warn_missing(sess, "name", name);
name
}