Skip to content

Commit 1b99491

Browse files
author
Paul Woolcock
committed
change this to only emit a warning right now
1 parent d998dba commit 1b99491

File tree

2 files changed

+27
-5
lines changed

2 files changed

+27
-5
lines changed

src/cargo/util/toml.rs

+14-3
Original file line numberDiff line numberDiff line change
@@ -546,7 +546,7 @@ impl TomlManifest {
546546
}
547547

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

551551
// Get targets
552552
let targets = normalize(&lib,
@@ -774,7 +774,10 @@ impl TomlManifest {
774774
Ok(replace)
775775
}
776776

777-
fn maybe_custom_build(&self, build: &Option<StringOrBool>, project_dir: &Path)
777+
fn maybe_custom_build(&self,
778+
build: &Option<StringOrBool>,
779+
project_dir: &Path,
780+
warnings: &mut Vec<String>)
778781
-> Option<PathBuf> {
779782
let build_rs = project_dir.join("build.rs");
780783
match *build {
@@ -783,7 +786,15 @@ impl TomlManifest {
783786
Some(StringOrBool::String(ref s)) => Some(PathBuf::from(s)),
784787
None => {
785788
match fs::metadata(&build_rs) {
786-
Ok(ref e) if e.is_file() => Some(build_rs.into()),
789+
// Enable this after the warning has been visible for some time
790+
// Ok(ref e) if e.is_file() => Some(build_rs.into()),
791+
Ok(ref e) if e.is_file() => {
792+
warnings.push("`build.rs` files in the same directory \
793+
as your `Cargo.toml` will soon be treated \
794+
as build scripts. Add `build = false` to \
795+
your `Cargo.toml` to prevent this".into());
796+
None
797+
},
787798
Ok(_) => None,
788799
Err(_) => None,
789800
}

tests/build-script.rs

+13-2
Original file line numberDiff line numberDiff line change
@@ -2345,8 +2345,12 @@ fn assume_build_script_when_build_rs_present() {
23452345
authors = []
23462346
"#)
23472347
.file("src/main.rs", r#"
2348+
use std::path::Path;
23482349
fn main() {
2349-
println!(include_str!(concat!(env!("OUT_DIR"), "/output")));
2350+
let f = env!("OUT_DIR");
2351+
assert!(
2352+
! Path::new(f).join("output").exists()
2353+
);
23502354
}
23512355
"#)
23522356
.file("build.rs", r#"
@@ -2365,7 +2369,14 @@ fn assume_build_script_when_build_rs_present() {
23652369
p.build();
23662370

23672371
assert_that(p.cargo("run").arg("-v"),
2368-
execs().with_status(0).with_stdout("foo\n"));
2372+
execs().with_status(0).with_stderr("\
2373+
warning: `build.rs` files in the same directory as your `Cargo.toml` will soon be treated \
2374+
as build scripts. Add `build = false` to your `Cargo.toml` to prevent this
2375+
Compiling builder v0.0.1 ([..])
2376+
Running [..]
2377+
Finished [..]
2378+
Running [..]
2379+
"));
23692380
}
23702381

23712382
#[test]

0 commit comments

Comments
 (0)