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)
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
(setenv "CPATH"
|
(setenv "CPATH"
|
||||||
(string-append (assoc-ref inputs "eigen")
|
(string-append (assoc-ref inputs "eigen")
|
||||||
"/include/eigen3"))
|
"/include/eigen3:"
|
||||||
|
(or (getenv "CPATH") "")))
|
||||||
#t))
|
#t))
|
||||||
(delete 'configure)
|
(delete 'configure)
|
||||||
(replace 'install
|
(replace 'install
|
||||||
|
|
Loading…
Reference in New Issue