##// END OF EJS Templates
match: fix assertion for fileset with no context (issue6046)...
match: fix assertion for fileset with no context (issue6046) A falsy changectx should be allowed.

File last commit:

r40154:cd490ac9 default
r41144:48124948 stable
Show More
build.rs
9 lines | 173 B | application/rls-services+xml | RustLexer
Yuya Nishihara
rust-chg: add function to send fds via domain socket...
r40005 extern crate cc;
fn main() {
cc::Build::new()
.warnings(true)
.file("src/sendfds.c")
Yuya Nishihara
rust-chg: extract signal handlers from chg/procutil.c...
r40154 .file("src/sighandlers.c")
Yuya Nishihara
rust-chg: add function to send fds via domain socket...
r40005 .compile("procutil");
}