guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: paml: Fix build.


From: guix-commits
Subject: branch master updated: gnu: paml: Fix build.
Date: Wed, 29 Jul 2020 22:06:31 -0400

This is an automated email from the git hooks/post-receive script.

niedzejkob pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 6a7bdbf  gnu: paml: Fix build.
6a7bdbf is described below

commit 6a7bdbfa2dd07bcbfd35d1353354bad5db5dd193
Author: Jakub Kądziołka <kuba@kadziolka.net>
AuthorDate: Thu Jul 30 03:48:50 2020 +0200

    gnu: paml: Fix build.
    
    * gnu/packages/bioinformatics.scm (paml)[snippet]: Fix permissions
      before repacking the source tarball.
---
 gnu/packages/bioinformatics.scm | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 681919d..540bc12 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -11862,6 +11862,9 @@ straight away.  Its main features are:
               (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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]