diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-01-26 22:59:40 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-01-29 00:23:27 +0100 |
commit | 94a1eb96d32fcce97ee5d9440ecffe22f7555cd5 (patch) | |
tree | 046a9afd0bebfee3add786ae115c1b1de39273bd /gnu/packages/maths.scm | |
parent | 59cd0ba4abd7df1079cc9b1c92b5a363c2e25ef4 (diff) | |
download | guix-94a1eb96d32fcce97ee5d9440ecffe22f7555cd5.tar guix-94a1eb96d32fcce97ee5d9440ecffe22f7555cd5.tar.gz |
gnu: fbcat, slepc: Use INVOKE.
* gnu/packages/linux.scm (fbcat)[arguments]: Substitute INVOKE for
SYSTEM*.
* gnu/packages/maths.scm (slepc)[arguments]: Likewise.
Diffstat (limited to 'gnu/packages/maths.scm')
-rw-r--r-- | gnu/packages/maths.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index d4e9914e18..90beb6c724 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")) - (zero? (apply system* "./configure" flags))))) + (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 |