mhw pushed a commit to branch core-updates
in repository guix.
commit c1fced68e29d8b563e363713263e2913a880c19c
Author: Mark H Weaver <[email protected]>
Date: Fri Mar 23 03:02:41 2018 -0400
gnu: libssh2: Use invoke.
* gnu/packages/ssh.scm (libssh2)[arguments]: Use invoke in the autoreconf
phase.
---
gnu/packages/ssh.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gnu/packages/ssh.scm b/gnu/packages/ssh.scm
index 179a223..050ef05 100644
--- a/gnu/packages/ssh.scm
+++ b/gnu/packages/ssh.scm
@@ -120,7 +120,7 @@ remote applications.")
#:phases (modify-phases %standard-phases
(add-before 'configure 'autoreconf
(lambda _
- (zero? (system* "autoreconf" "-v")))))))
+ (invoke "autoreconf" "-v"))))))
(native-inputs `(("autoconf" ,autoconf)
("automake" ,automake)))
(synopsis "Client-side C library implementing the SSH2 protocol")