about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--tvix/build/build.rs4
-rw-r--r--tvix/castore/build.rs4
-rw-r--r--tvix/store/build.rs4
3 files changed, 6 insertions, 6 deletions
diff --git a/tvix/build/build.rs b/tvix/build/build.rs
index d75ebf7143..c3518ea877 100644
--- a/tvix/build/build.rs
+++ b/tvix/build/build.rs
@@ -20,6 +20,7 @@ fn main() -> Result<()> {
     builder
         .build_server(true)
         .build_client(true)
+        .emit_rerun_if_changed(false)
         .compile_with_config(
             config,
             &[
@@ -33,6 +34,5 @@ fn main() -> Result<()> {
                 Some(proto_root) => proto_root.to_str().unwrap().to_owned(),
                 None => "../..".to_string(),
             }],
-        )?;
-    Ok(())
+        )
 }
diff --git a/tvix/castore/build.rs b/tvix/castore/build.rs
index 339ba867dd..6424487b21 100644
--- a/tvix/castore/build.rs
+++ b/tvix/castore/build.rs
@@ -19,6 +19,7 @@ fn main() -> Result<()> {
     builder
         .build_server(true)
         .build_client(true)
+        .emit_rerun_if_changed(false)
         .compile_with_config(
             config,
             &[
@@ -33,6 +34,5 @@ fn main() -> Result<()> {
                 Some(proto_root) => proto_root.to_str().unwrap().to_owned(),
                 None => "../..".to_string(),
             }],
-        )?;
-    Ok(())
+        )
 }
diff --git a/tvix/store/build.rs b/tvix/store/build.rs
index cfeda59698..809fa29578 100644
--- a/tvix/store/build.rs
+++ b/tvix/store/build.rs
@@ -20,6 +20,7 @@ fn main() -> Result<()> {
     builder
         .build_server(true)
         .build_client(true)
+        .emit_rerun_if_changed(false)
         .compile_with_config(
             config,
             &[
@@ -33,6 +34,5 @@ fn main() -> Result<()> {
                 Some(proto_root) => proto_root.to_str().unwrap().to_owned(),
                 None => "../..".to_string(),
             }],
-        )?;
-    Ok(())
+        )
 }