Avoid spewing object data into cargo

This fixes automatic rebuild on change of C files.
reviewable/pr1251/r7
Tamir Duberstein 3 weeks ago
parent 5f6e738c2d
commit 8bd2459c7f
No known key found for this signature in database

@ -179,7 +179,8 @@ fn main() -> Result<()> {
.arg("--dump-section") .arg("--dump-section")
.arg(output) .arg(output)
.arg("-") .arg("-")
.stdin(stdout), .stdin(stdout)
.stdout(Stdio::null()),
)?; )?;
let output = child let output = child

Loading…
Cancel
Save