[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/03: gnu: slepc: Apply invoke to configure flags.
From: |
Eric Bavier |
Subject: |
03/03: gnu: slepc: Apply invoke to configure flags. |
Date: |
Fri, 2 Feb 2018 09:38:49 -0500 (EST) |
bavier pushed a commit to branch master
in repository guix.
commit c684008992b0a0d2d8099dab48297fcf13b4a625
Author: Eric Bavier <address@hidden>
Date: Fri Feb 2 08:20:02 2018 -0600
gnu: slepc: Apply invoke to configure flags.
Follow-up to 94a1eb96d32fcce97ee5d9440ecffe22f7555cd5
* gnu/packages/maths.scm (slepc)[arguments]: Use 'apply' since 'flags' is a
list of configure arguments.
---
gnu/packages/maths.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
index 30a03a0..dcb1219 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -1647,7 +1647,7 @@ scientific applications modeled by partial differential
equations.")
(format #t "configure flags: ~s~%" flags)
(setenv "SLEPC_DIR" (getcwd))
(setenv "PETSC_DIR" (assoc-ref inputs "petsc"))
- (invoke "./configure" flags))))
+ (apply invoke "./configure" flags))))
(add-after 'install 'delete-doc
;; TODO: SLEPc installs HTML documentation alongside headers in
;; $out/include. We'd like to move them to share/doc, but delete