mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: diffoscope: Add phase fixing execute bit on script.
Fixes a regression introduced with the switch to pyproject-build-system in
a5b88a7a4d
.
* gnu/packages/diffoscope.scm (diffoscope)[phases]: Add
'make-extract-vmlinux-executable.
This commit is contained in:
parent
5b8ffb974c
commit
4c4451b923
1 changed files with 7 additions and 0 deletions
|
@ -99,6 +99,13 @@
|
|||
(lambda _
|
||||
(delete-file "tests/comparators/test_berkeley_db.py")
|
||||
(delete-file "tests/comparators/test_wasm.py")))
|
||||
(add-after 'compress-documentation 'make-extract-vmlinux-executable
|
||||
;; The script extract-vmlinux needs to be marked executable to be
|
||||
;; able to extract vmlinux files.
|
||||
(lambda _
|
||||
(for-each (lambda (file)
|
||||
(chmod file #o755))
|
||||
(find-files #$output "extract-vmlinux"))))
|
||||
(add-after 'unpack 'embed-tool-references
|
||||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
(define (bin command)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue