mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 23:06:59 +01:00
gnu: paml: Fix build.
* gnu/packages/bioinformatics.scm (paml)[snippet]: Fix permissions before repacking the source tarball.
This commit is contained in:
parent
8206a282b1
commit
6a7bdbfa2d
1 changed files with 3 additions and 0 deletions
|
@ -11862,6 +11862,9 @@ (define-public paml
|
|||
(snippet
|
||||
'(begin
|
||||
(for-each delete-file (find-files "." "\\.exe$"))
|
||||
;; Some files in the original tarball have restrictive
|
||||
;; permissions, which makes repackaging fail
|
||||
(for-each (lambda (file) (chmod file #o644)) (find-files "."))
|
||||
#t))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
|
|
Loading…
Reference in a new issue