about summary refs log tree commit diff
path: root/compiler/rustc/build.rs
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/rustc/build.rs')
-rw-r--r--compiler/rustc/build.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc/build.rs b/compiler/rustc/build.rs
index 39cf3e094c8..8b7d28d2b8a 100644
--- a/compiler/rustc/build.rs
+++ b/compiler/rustc/build.rs
@@ -18,7 +18,7 @@ fn set_windows_exe_options() {
     let mut manifest = env::current_dir().unwrap();
     manifest.push(WINDOWS_MANIFEST_FILE);
 
-    println!("cargo:rerun-if-changed={}", WINDOWS_MANIFEST_FILE);
+    println!("cargo:rerun-if-changed={WINDOWS_MANIFEST_FILE}");
     // Embed the Windows application manifest file.
     println!("cargo:rustc-link-arg-bin=rustc-main=/MANIFEST:EMBED");
     println!("cargo:rustc-link-arg-bin=rustc-main=/MANIFESTINPUT:{}", manifest.to_str().unwrap());