mhw pushed a commit to branch core-updates
in repository guix.
commit 95cc40a88ab700f26f7366a8ce5a5d498f882a0c
Author: Mark H Weaver <[email protected]>
Date: Fri Mar 23 01:39:02 2018 -0400
gnu: [email protected]: Use invoke.
* gnu/packages/autotools.scm (autoconf-2.13)[arguments]: Use invoke in the
custom configure phase.
---
gnu/packages/autotools.scm | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/autotools.scm b/gnu/packages/autotools.scm
index 913caa2..7998dea 100644
--- a/gnu/packages/autotools.scm
+++ b/gnu/packages/autotools.scm
@@ -121,9 +121,9 @@ know anything about Autoconf or M4.")
(out (assoc-ref outputs "out")))
(setenv "CONFIG_SHELL" bash)
(setenv "SHELL" bash)
- (zero? (system* bash "./configure"
- (string-append "--prefix=" out)
- (string-append "--build=" build)))))))))))
+ (invoke bash "./configure"
+ (string-append "--prefix=" out)
+ (string-append "--build=" build))))))))))
(define (make-autoconf-wrapper autoconf)