Skip to content

Commit 952b0ab

Browse files
author
Paul Woolcock
committed
Assume that a build.rs file is a build script
If cargo sees a `build.rs` file in the same directory as the current `Cargo.toml`, it will assume that the `build.rs` file is a build script, _unless there is_ `build = false` _in the _ `Cargo.toml` _file_. Closes #3391
1 parent de2919f commit 952b0ab

File tree

2 files changed

+8
-22
lines changed

2 files changed

+8
-22
lines changed

src/cargo/util/toml.rs

+5-12
Original file line numberDiff line numberDiff line change
@@ -534,7 +534,7 @@ impl TomlManifest {
534534
}
535535

536536
// processing the custom build script
537-
let new_build = self.maybe_custom_build(&project.build, &layout.root, &mut warnings);
537+
let new_build = self.maybe_custom_build(&project.build, &layout.root);
538538

539539
// Get targets
540540
let targets = normalize(&layout.root,
@@ -768,8 +768,7 @@ impl TomlManifest {
768768

769769
fn maybe_custom_build(&self,
770770
build: &Option<StringOrBool>,
771-
project_dir: &Path,
772-
warnings: &mut Vec<String>)
771+
project_dir: &Path)
773772
-> Option<PathBuf> {
774773
let build_rs = project_dir.join("build.rs");
775774
match *build {
@@ -778,15 +777,9 @@ impl TomlManifest {
778777
Some(StringOrBool::String(ref s)) => Some(PathBuf::from(s)),
779778
None => {
780779
match fs::metadata(&build_rs) {
781-
// Enable this after the warning has been visible for some time
782-
// Ok(ref e) if e.is_file() => Some(build_rs.into()),
783-
Ok(ref e) if e.is_file() => {
784-
warnings.push("`build.rs` files in the same directory \
785-
as your `Cargo.toml` will soon be treated \
786-
as build scripts. Add `build = false` to \
787-
your `Cargo.toml` to prevent this".into());
788-
None
789-
},
780+
// If there is a build.rs file next to the Cargo.toml, assume it is
781+
// a build script
782+
Ok(ref e) if e.is_file() => Some(build_rs.into()),
790783
Ok(_) => None,
791784
Err(_) => None,
792785
}

tests/build-script.rs

+3-10
Original file line numberDiff line numberDiff line change
@@ -2350,8 +2350,8 @@ fn assume_build_script_when_build_rs_present() {
23502350
"#)
23512351
.file("src/main.rs", r#"
23522352
fn main() {
2353-
if cfg!(foo) {
2354-
panic!("the build script was run");
2353+
if ! cfg!(foo) {
2354+
panic!("the build script was not run");
23552355
}
23562356
}
23572357
"#)
@@ -2363,14 +2363,7 @@ fn assume_build_script_when_build_rs_present() {
23632363
p.build();
23642364

23652365
assert_that(p.cargo("run").arg("-v"),
2366-
execs().with_status(0).with_stderr("\
2367-
warning: `build.rs` files in the same directory as your `Cargo.toml` will soon be treated \
2368-
as build scripts. Add `build = false` to your `Cargo.toml` to prevent this
2369-
Compiling builder v0.0.1 ([..])
2370-
Running [..]
2371-
Finished [..]
2372-
Running [..]
2373-
"));
2366+
execs().with_status(0));
23742367
}
23752368

23762369
#[test]

0 commit comments

Comments
 (0)