diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-06-22 21:39:48 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-06-22 22:00:23 +0200 |
commit | 7c1a64aa5c7d276cb1c34317f77535afec268b9e (patch) | |
tree | 20e814e345164bb194ecdbb8b231d50f880897a9 /gnu/packages/ssh.scm | |
parent | e7c37ed590cad02d4d2f0e86ce5fcb3f15c69fb8 (diff) | |
download | patches-7c1a64aa5c7d276cb1c34317f77535afec268b9e.tar patches-7c1a64aa5c7d276cb1c34317f77535afec268b9e.tar.gz |
gnu: corkscrew: Return #t from all phases.
* gnu/packages/ssl.scm (corkscrew)[arguments]: Substitute INVOKE for
SYSTEM*.
Diffstat (limited to 'gnu/packages/ssh.scm')
-rw-r--r-- | gnu/packages/ssh.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/ssh.scm b/gnu/packages/ssh.scm index 6a690c7dde..1240216ec7 100644 --- a/gnu/packages/ssh.scm +++ b/gnu/packages/ssh.scm @@ -345,9 +345,9 @@ libssh library.") ,(string-append "--build=" build) ,(string-append "--host=" (or target build))))) (setenv "CONFIG_SHELL" bash) - (zero? (apply system* bash - (string-append "." "/configure") - flags))))) + (apply invoke bash + (string-append "." "/configure") + flags)))) (add-after 'install 'install-documentation (lambda* (#:key outputs #:allow-other-keys) (let* ((out (assoc-ref outputs "out")) |