gnu: slepc: Apply invoke to configure flags.
Follow-up to 94a1eb96d3
* gnu/packages/maths.scm (slepc)[arguments]: Use 'apply' since 'flags' is a
list of configure arguments.
master
parent
e01397b489
commit
c684008992
|
@ -1647,7 +1647,7 @@ scientific applications modeled by partial differential equations.")
|
||||||
(format #t "configure flags: ~s~%" flags)
|
(format #t "configure flags: ~s~%" flags)
|
||||||
(setenv "SLEPC_DIR" (getcwd))
|
(setenv "SLEPC_DIR" (getcwd))
|
||||||
(setenv "PETSC_DIR" (assoc-ref inputs "petsc"))
|
(setenv "PETSC_DIR" (assoc-ref inputs "petsc"))
|
||||||
(invoke "./configure" flags))))
|
(apply invoke "./configure" flags))))
|
||||||
(add-after 'install 'delete-doc
|
(add-after 'install 'delete-doc
|
||||||
;; TODO: SLEPc installs HTML documentation alongside headers in
|
;; TODO: SLEPc installs HTML documentation alongside headers in
|
||||||
;; $out/include. We'd like to move them to share/doc, but delete
|
;; $out/include. We'd like to move them to share/doc, but delete
|
||||||
|
|
Reference in New Issue