]> git.lizzy.rs Git - rust.git/blobdiff - build.rs
Remove unnecessary use of Box in `format_function_type`
[rust.git] / build.rs
index d72b44eb7f36426b4ccf2903a758b049d8616e9a..3f1c412a7afc2518d057bf4e1dba886969e45f7b 100644 (file)
--- a/build.rs
+++ b/build.rs
 use std::env;
 use std::fs::File;
 use std::io::Write;
-use std::path::PathBuf;
+use std::path::{Path, PathBuf};
 use std::process::Command;
 
 fn main() {
+    // Only check .git/HEAD dirty status if it exists - doing so when
+    // building dependent crates may lead to false positives and rebuilds
+    if Path::new(".git/HEAD").exists() {
+        println!("cargo:rerun-if-changed=.git/HEAD");
+    }
+
+    println!("cargo:rerun-if-env-changed=CFG_RELEASE_CHANNEL");
+
     let out_dir = PathBuf::from(env::var_os("OUT_DIR").unwrap());
 
     File::create(out_dir.join("commit-info.txt"))