coreutils/src/stdbuf/build.rs

11 lines
172 B
Rust
Raw Normal View History

use std::process::Command;
#[path = "../../mkmain.rs"]
mod mkmain;
fn main() {
mkmain::main();
Command::new("make").output().expect("failed to execute make");
}