diff options
| author | Woodpecker CI <emmett1.2miligrams@protonmail.com> | 2025-09-22 14:33:33 +0000 |
|---|---|---|
| committer | Woodpecker CI <emmett1.2miligrams@protonmail.com> | 2025-09-22 14:33:33 +0000 |
| commit | 4efda9844b9028c843ee11e3000c9e62307e7371 (patch) | |
| tree | 120f6702fb5d69dd3df4eff0daa816820b4e64dd /librewolf/fix-rust-target.patch | |
| parent | e780a8dbd567955bb90e3e1376d52f7c1ea21fd8 (diff) | |
| download | alicelinux-4efda9844b9028c843ee11e3000c9e62307e7371.tar.gz alicelinux-4efda9844b9028c843ee11e3000c9e62307e7371.zip | |
Woodpecker CI 00260865a58e692dcab21c7b52218c1c6aaa1703 [SKIP CI]
Diffstat (limited to 'librewolf/fix-rust-target.patch')
| -rw-r--r-- | librewolf/fix-rust-target.patch | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/librewolf/fix-rust-target.patch b/librewolf/fix-rust-target.patch deleted file mode 100644 index 9342063c..00000000 --- a/librewolf/fix-rust-target.patch +++ /dev/null @@ -1,31 +0,0 @@ -Allow us to just set RUST_TARGEt ourselves instead of hacking around in mozilla's -weird custom build system... - ---- a/build/moz.configure/rust.configure -+++ b/build/moz.configure/rust.configure -@@ -225,7 +225,9 @@ - data.setdefault(key, []).append(namespace(rust_target=t, target=info)) - return data - -- -+@imports('os') -+@imports(_from='mozbuild.util', _import='ensure_unicode') -+@imports(_from='mozbuild.util', _import='system_encoding') - def detect_rustc_target( - host_or_target, compiler_info, arm_target, rust_supported_targets - ): -@@ -340,13 +342,13 @@ - - return None - -- rustc_target = find_candidate(candidates) -+ rustc_target = os.environ['RUST_TARGET'] - - if rustc_target is None: - die("Don't know how to translate {} for rustc".format(host_or_target.alias)) - -- return rustc_target -+ return ensure_unicode(rustc_target, system_encoding) - - - @imports('os') |