guix-commits
[Top][All Lists]
Advanced

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

03/11: gnu: prodigal: Remove reference to %outputs.


From: guix-commits
Subject: 03/11: gnu: prodigal: Remove reference to %outputs.
Date: Sat, 4 Dec 2021 10:02:33 -0500 (EST)

rekado pushed a commit to branch core-updates-frozen
in repository guix.

commit cfaf37d10b20e2d5f5a2b1671eaed2b88c1a7c67
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Sat Dec 4 15:13:11 2021 +0100

    gnu: prodigal: Remove reference to %outputs.
    
    * gnu/packages/bioinformatics.scm (prodigal)[arguments]: Remove reference to
    %outputs by using a gexp.
---
 gnu/packages/bioinformatics.scm | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 7c4b513..f3813ba 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -5942,9 +5942,8 @@ different command-line tools:
     (build-system gnu-build-system)
     (arguments
      `(#:tests? #f                      ; no check target
-       #:make-flags (list (string-append "INSTALLDIR="
-                                         (assoc-ref %outputs "out")
-                                         "/bin"))
+       #:make-flags
+       ,#~(list (string-append "INSTALLDIR=" #$output "/bin"))
        #:phases
        (modify-phases %standard-phases
          (delete 'configure))))



reply via email to

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