diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-06-30 02:22:23 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-06-30 03:46:19 +0200 |
commit | 49fdd357a2eefed5b1ebdf6ba43683eac166d4c5 (patch) | |
tree | d99083079d94bf07a671de48e9f9d71a1eb2e4dc /gnu | |
parent | 5e6fd87acf58d10199751276bfe8f890c8d01b3e (diff) | |
download | guix-49fdd357a2eefed5b1ebdf6ba43683eac166d4c5.tar guix-49fdd357a2eefed5b1ebdf6ba43683eac166d4c5.tar.gz |
gnu: petsc: Return #t from phases.
* gnu/packages/maths.scm (petsc)[arguments]: Substitute INVOKE for
SYSTEM*.
Diffstat (limited to 'gnu')
-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 ee9d84d1c3..7cd3c46f1b 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -1598,7 +1598,7 @@ September 2004}") ,@configure-flags))) (format #t "build directory: ~s~%" (getcwd)) (format #t "configure flags: ~s~%" flags) - (zero? (apply system* "./configure" flags))))) + (apply invoke "./configure" flags)))) (add-after 'configure 'clean-local-references (lambda* (#:key outputs #:allow-other-keys) (let ((out (assoc-ref outputs "out"))) |