diff options
author | Mark H Weaver <mhw@netris.org> | 2018-03-23 03:02:41 -0400 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2018-03-23 04:42:44 -0400 |
commit | c1fced68e29d8b563e363713263e2913a880c19c (patch) | |
tree | 407aa39647223ed2cdff63baa2afa4d0fb1bf3a1 /gnu/packages/ssh.scm | |
parent | 4bd9f46553a910b446066f01face0b9ff53ceb5e (diff) | |
download | guix-c1fced68e29d8b563e363713263e2913a880c19c.tar guix-c1fced68e29d8b563e363713263e2913a880c19c.tar.gz |
gnu: libssh2: Use invoke.
* gnu/packages/ssh.scm (libssh2)[arguments]: Use invoke in the autoreconf
phase.
Diffstat (limited to 'gnu/packages/ssh.scm')
-rw-r--r-- | gnu/packages/ssh.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/ssh.scm b/gnu/packages/ssh.scm index 179a2233b6..050ef05f73 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") |