@@ -546,7 +546,7 @@ impl TomlManifest {
546
546
}
547
547
548
548
// 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 ) ;
550
550
551
551
// Get targets
552
552
let targets = normalize ( & lib,
@@ -774,7 +774,10 @@ impl TomlManifest {
774
774
Ok ( replace)
775
775
}
776
776
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 > )
778
781
-> Option < PathBuf > {
779
782
let build_rs = project_dir. join ( "build.rs" ) ;
780
783
match * build {
@@ -783,7 +786,15 @@ impl TomlManifest {
783
786
Some ( StringOrBool :: String ( ref s) ) => Some ( PathBuf :: from ( s) ) ,
784
787
None => {
785
788
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
+ } ,
787
798
Ok ( _) => None ,
788
799
Err ( _) => None ,
789
800
}
0 commit comments