rust/chg/build.rs
author Yuya Nishihara <yuya@tcha.org>
Wed, 02 Oct 2019 07:35:22 +0900
changeset 43096 813aa8cc55d4
parent 40119 cd490ac908c0
child 44689 1f5ab1a9363d
permissions -rw-r--r--
patchbomb: use procutil.shellquote() instead of shlex to escape email address This basically backs out 2cc453284d5c, and inserts procutil.shellquote() instead. I don't care about Windows compatibility here, but shlex.quote() can't handle byte strings on Python 3.

extern crate cc;

fn main() {
    cc::Build::new()
        .warnings(true)
        .file("src/sendfds.c")
        .file("src/sighandlers.c")
        .compile("procutil");
}