about summary refs log tree commit diff
diff options
context:
space:
mode:
authorNguyễn Gia Phong <cnx@loang.net>2024-11-19 11:55:45 +0900
committerNguyễn Gia Phong <cnx@loang.net>2024-11-19 11:55:45 +0900
commite1a7230a38f0106c70063b50b9f4d4d2467c2c97 (patch)
tree3c8fb1c93e20be156e55e8f9e5fd4ee68ca654c8
parent9973c0e6bacb283ba401b5fe42f7fec0dc84f5a0 (diff)
downloadloftix-e1a7230a38f0106c70063b50b9f4d4d2467c2c97.tar.gz
Fix patches path
-rw-r--r--loftix/fuzzing.scm3
-rw-r--r--loftix/patching.scm16
2 files changed, 10 insertions, 9 deletions
diff --git a/loftix/fuzzing.scm b/loftix/fuzzing.scm
index 65fd6b7..e6c4094 100644
--- a/loftix/fuzzing.scm
+++ b/loftix/fuzzing.scm
@@ -41,7 +41,8 @@
                 (sha256
                  (base32
                   "149f5r341v921lfmdr4s9yap4qrqzc41vc7rx5xlgb78m5lwprx8"))
-               (patches (search-patches "afl++-keep-all-crashes.patch")))))))
+               (patches (search-patches
+                          "patches/afl++-keep-all-crashes.patch")))))))
 
 (define-public afl-dyninst
   (package
diff --git a/loftix/patching.scm b/loftix/patching.scm
index 047630e..884b631 100644
--- a/loftix/patching.scm
+++ b/loftix/patching.scm
@@ -43,21 +43,21 @@
                 (file-name (git-file-name name version))
                 (patches (search-patches
                            ;; https://github.com/GJDuck/e9patch/pull/94
-                           "e9patch-devendor.patch"
+                           "patches/e9patch-devendor.patch"
                            ;; https://github.com/GJDuck/e9patch/pull/99
-                           "e9patch-plugin-api-headers.patch"
+                           "patches/e9patch-plugin-api-headers.patch"
                            ;; https://github.com/GJDuck/e9patch/pull/92
-                           "e9patch-check.patch"
+                           "patches/e9patch-check.patch"
                            ;; https://github.com/GJDuck/e9patch/pull/95
-                           "e9patch-check-intel-format.patch"
+                           "patches/e9patch-check-intel-format.patch"
                            ;; https://github.com/GJDuck/e9patch/pull/88
-                           "e9patch-check-mode.patch"
+                           "patches/e9patch-check-mode.patch"
                            ;; https://github.com/GJDuck/e9patch/pull/93
-                           "e9patch-check-mov-imm.patch"
+                           "patches/e9patch-check-mov-imm.patch"
                            ;; https://github.com/GJDuck/e9patch/issues/96
-                           "e9patch-check-rflags.patch"
+                           "patches/e9patch-check-rflags.patch"
                            ;; https://github.com/GJDuck/e9patch/pull/97
-                           "e9patch-check-same_op_2.patch"))))
+                           "patches/e9patch-check-same_op_2.patch"))))
       (build-system gnu-build-system)
       (arguments (list #:modules `((ice-9 string-fun) ; string-replace-substring
                                    ,@%default-gnu-modules)