X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=build.rs;h=e7b1e1b854c07025ac06e9391859c2c1c7fd63af;hb=b26c86b51afa013815fc54404ef033f14541c707;hp=d72b44eb7f36426b4ccf2903a758b049d8616e9a;hpb=b7bc720638c60950007c5fe7693ffdc522cec294;p=rust.git diff --git a/build.rs b/build.rs index d72b44eb7f3..e7b1e1b854c 100644 --- a/build.rs +++ b/build.rs @@ -1,20 +1,18 @@ -// Copyright 2017 The Rust Project Developers. See the COPYRIGHT -// file at the top-level directory of this distribution and at -// http://rust-lang.org/COPYRIGHT. -// -// Licensed under the Apache License, Version 2.0 or the MIT license -// , at your -// option. This file may not be copied, modified, or distributed -// except according to those terms. - 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")) @@ -27,9 +25,7 @@ fn main() { // (git not installed or if this is not a git repository) just return an empty string. fn commit_info() -> String { match (channel(), commit_hash(), commit_date()) { - (channel, Some(hash), Some(date)) => { - format!("{} ({} {})", channel, hash.trim_right(), date) - } + (channel, Some(hash), Some(date)) => format!("{} ({} {})", channel, hash.trim_end(), date), _ => String::new(), } }