guix-commits
[Top][All Lists]
Advanced

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

10/11: gnu: plink-ng: Replace reference to %outputs.


From: guix-commits
Subject: 10/11: gnu: plink-ng: Replace reference to %outputs.
Date: Sat, 4 Dec 2021 10:02:36 -0500 (EST)

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

commit e28b8a9cea010967ecb1b3888e0ab5a51c9fafaf
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Sat Dec 4 15:35:28 2021 +0100

    gnu: plink-ng: Replace reference to %outputs.
    
    * gnu/packages/bioinformatics.scm (plink-ng)[arguments]: Remove reference to
    %outputs by using a gexp.
---
 gnu/packages/bioinformatics.scm | 15 ++++++++-------
 1 file changed, 8 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index f69df5d..e24982c 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -6773,13 +6773,14 @@ subsequent visualization, annotation and storage of 
results.")
     (build-system gnu-build-system)
     (arguments
      `(#:tests? #f ;no "check" target
-       #:make-flags (list "BLASFLAGS=-llapack -lopenblas"
-                          "CFLAGS=-Wall -O2 -DDYNAMIC_ZLIB=1"
-                          "ZLIB=-lz"
-                          "BIN=plink prettify"
-                          (string-append "CC=" ,(cc-for-target))
-                          (string-append "PREFIX=" (assoc-ref %outputs "out"))
-                          "DESTDIR=")
+       #:make-flags
+       ,#~(list "BLASFLAGS=-llapack -lopenblas"
+                "CFLAGS=-Wall -O2 -DDYNAMIC_ZLIB=1"
+                "ZLIB=-lz"
+                "BIN=plink prettify"
+                (string-append "CC=" #$(cc-for-target))
+                (string-append "PREFIX=" #$output)
+                "DESTDIR=")
        #:phases
        (modify-phases %standard-phases
          (add-after 'unpack 'chdir



reply via email to

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