coreutils/src/stdbuf/build.rs

5 lines
110 B
Rust

use std::process::Command;
fn main() {
Command::new("make").output().expect("failed to execute make");
}