From 24b0cadb8984ba877a1b9d3791d5fba1a1cfe291 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Sat, 14 Apr 2018 14:08:07 +0200 Subject: [PATCH] Use "::std" instead of "std" --- build.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.rs b/build.rs index c2c4ec66..4aa730f0 100644 --- a/build.rs +++ b/build.rs @@ -19,7 +19,7 @@ use std::process::Command; fn main() { - let profile = String::from(std::env::var("PROFILE").unwrap()); + let profile = String::from(::std::env::var("PROFILE").unwrap()); let git_version = if profile == "debug" { let output = Command::new("git") .args(&["describe", "HEAD"])