guix-commits
[Top][All Lists]
Advanced

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

01/03: gnu: nanopolish: Fix build with GCC 7.


From: guix-commits
Subject: 01/03: gnu: nanopolish: Fix build with GCC 7.
Date: Wed, 17 Jul 2019 09:17:11 -0400 (EDT)

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

commit 3549e23b25303d46f4725628a50c2a302d5e59f3
Author: Marius Bakke <address@hidden>
Date:   Tue Jul 16 20:10:17 2019 +0200

    gnu: nanopolish: Fix build with GCC 7.
    
    * gnu/packages/bioinformatics.scm (nanopolish)[arguments]: Preserve the
    existing CPATH variable, if any.
---
 gnu/packages/bioinformatics.scm | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 1372bb4..313ffa1 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -14072,7 +14072,8 @@ choosing which reads pass the filter.")
              (lambda* (#:key inputs #:allow-other-keys)
                (setenv "CPATH"
                        (string-append (assoc-ref inputs "eigen")
-                                      "/include/eigen3"))
+                                      "/include/eigen3:"
+                                      (or (getenv "CPATH") "")))
                #t))
            (delete 'configure)
            (replace 'install



reply via email to

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