coreutils/src/stdbuf/build.rs

6 lines
110 B
Rust
Raw Normal View History

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