From c684008992b0a0d2d8099dab48297fcf13b4a625 Mon Sep 17 00:00:00 2001 From: Eric Bavier Date: Fri, 2 Feb 2018 08:20:02 -0600 Subject: 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(-) (limited to 'gnu/packages/maths.scm') diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index 30a03a0fb6..dcb12199cb 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 -- cgit v1.2.3