gnu: nanopolish: Fix build with GCC 7.
* gnu/packages/bioinformatics.scm (nanopolish)[arguments]: Preserve the existing CPATH variable, if any.
This commit is contained in:
parent
2a80d9e552
commit
3549e23b25
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue