Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,8 @@ fn waf() -> Command {
let cargo_dir = Path::new(&manifest_dir);
let termbox_dir = cargo_dir.join(".termbox");
let waf_file = fs::canonicalize(&termbox_dir.join("waf")).expect("Invalid location of waf file");
let mut cmd = Command::new(waf_file);
let mut cmd = Command::new("/usr/bin/python2");
cmd.arg(waf_file);
cmd.current_dir(&termbox_dir);
cmd
}
Expand Down