##// END OF EJS Templates
rust-chg: suppress panic while writing chg error to stderr...
rust-chg: suppress panic while writing chg error to stderr Otherwise "chg >/dev/full 2>&1" would exit with 101. Spotted by test-basic.t.

File last commit:

r40154:cd490ac9 default
r40322:af52181f default
Show More
build.rs
9 lines | 173 B | application/rls-services+xml | RustLexer
extern crate cc;
fn main() {
cc::Build::new()
.warnings(true)
.file("src/sendfds.c")
.file("src/sighandlers.c")
.compile("procutil");
}