Update comment on rerun-if-changed to better reflect what it does

This commit is contained in:
Adam Greig
2018-08-07 20:58:00 +01:00
parent f39fa8ebef
commit ba27df0b57

View File

@@ -12,6 +12,7 @@ fn main() {
.unwrap();
println!("cargo:rustc-link-search={}", out.display());
// Only re-run the build script when memory.x is changed, instead of at every build
// Only re-run the build script when memory.x is changed,
// instead of when any part of the source code changes.
println!("cargo:rerun-if-changed=memory.x");
}