-
Notifications
You must be signed in to change notification settings - Fork 15
Open
Labels
enhancementNew feature or requestNew feature or requesthelp wantedExtra attention is neededExtra attention is needed
Description
I use simple build.rs:
extern crate autotools;
fn main() {
let dst = autotools::build("3rdparty/rsync-3.1.3");
println!(
"rustc-env=RSYNC_BIN={}",
dst.join("bin").join("rsync").display()
);
}and after adding such build.rs build becomes really slow,
because of it runs configure every build.
It would be nice check if Makefile exists and if so just run make.
As I know make automatically runs configure if something changed.
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requesthelp wantedExtra attention is neededExtra attention is needed