From b6c596319bd249a7337879334bf57ce2580cdfa0 Mon Sep 17 00:00:00 2001 From: Josh Stone Date: Mon, 1 Jun 2020 09:19:52 -0700 Subject: [PATCH] Use a plain relative path for autocfg::rerun_path --- build.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.rs b/build.rs index f8bb38a1..171a38a1 100644 --- a/build.rs +++ b/build.rs @@ -3,5 +3,5 @@ extern crate autocfg; fn main() { let ac = autocfg::new(); ac.emit_sysroot_crate("std"); - autocfg::rerun_path(file!()); + autocfg::rerun_path("build.rs"); }