aboutsummaryrefslogtreecommitdiff
path: root/net-im/libsignal-node/files/patch-boring_boring-sys_main.rs
blob: 9ada79929d49a32f418a2a9cffcd47d7c2edefc0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
--- ../boring-signal-v4.6.0/boring-sys/build/main.rs.orig	2024-04-27 16:40:34 UTC
+++ ../boring-signal-v4.6.0/boring-sys/build/main.rs
@@ -477,9 +477,9 @@ fn ensure_patches_applied(config: &Config) -> io::Resu
     lock_file.lock()?;
 
     // NOTE: init git in the copied files, so we can apply patches
-    if !has_git {
-        run_command(Command::new("git").arg("init").current_dir(src_path))?;
-    }
+//    if !has_git {
+//        run_command(Command::new("git").arg("init").current_dir(src_path))?;
+//    }
 
     if config.features.pq_experimental {
         println!("cargo:warning=applying experimental post quantum crypto patch to boringssl");
@@ -515,8 +515,8 @@ fn apply_patch(config: &Config, patch_name: &str) -> i
     }
 
     run_command(
-        Command::new("git")
-            .args(&args)
+        Command::new("patch")
+            .args(["-p 1"])
             .arg(cmd_path)
             .current_dir(src_path),
     )?;