fa4de5dd3a
This brings in a batch of template changes, including: - We are now using python3 - Cleaned up distfiles fetching section (clearer, shorter) - Binary distfiles now use standard install.sh scripts - Imported various patches from Adélie Linux - We are now using config.toml instead of configure - Other assorted changes
11 lines
467 B
Diff
11 lines
467 B
Diff
This allows lzma-sys to build in a cross-compiling environment.
|
|
--- rustc-1.36.0-src/vendor/lzma-sys/build.rs
|
|
+++ rustc-1.36.0-src/vendor/lzma-sys/build.rs
|
|
@@ -101,6 +101,7 @@ fn main() {
|
|
}
|
|
cmd.env("CC", compiler.path())
|
|
.env("CFLAGS", cflags)
|
|
+ .env("LDFLAGS", "")
|
|
.current_dir(&dst.join("build"))
|
|
.arg(sanitize_sh(&src.join("configure")));
|
|
cmd.arg(format!("--prefix={}", sanitize_sh(&dst)));
|