summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gnu/packages/diffoscope.scm7
1 files changed, 7 insertions, 0 deletions
diff --git a/gnu/packages/diffoscope.scm b/gnu/packages/diffoscope.scm
index 680595aec83..ebf0316080f 100644
--- a/gnu/packages/diffoscope.scm
+++ b/gnu/packages/diffoscope.scm
@@ -99,6 +99,13 @@
99 (lambda _ 99 (lambda _
100 (delete-file "tests/comparators/test_berkeley_db.py") 100 (delete-file "tests/comparators/test_berkeley_db.py")
101 (delete-file "tests/comparators/test_wasm.py"))) 101 (delete-file "tests/comparators/test_wasm.py")))
102 (add-after 'compress-documentation 'make-extract-vmlinux-executable
103 ;; The script extract-vmlinux needs to be marked executable to be
104 ;; able to extract vmlinux files.
105 (lambda _
106 (for-each (lambda (file)
107 (chmod file #o755))
108 (find-files #$output "extract-vmlinux"))))
102 (add-after 'unpack 'embed-tool-references 109 (add-after 'unpack 'embed-tool-references
103 (lambda* (#:key inputs #:allow-other-keys) 110 (lambda* (#:key inputs #:allow-other-keys)
104 (define (bin command) 111 (define (bin command)