diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-01-25 12:15:04 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-01-25 13:21:19 +0100 |
commit | ec7245f0dbe3f6f9429086d6f09ad5ddfa1ab394 (patch) | |
tree | 18ad7d63472d85b2fbdd81436edf5559b7543803 /gnu/packages/ftp.scm | |
parent | 15dc8ed5f403368099292bf51c18a0a10e0a39dc (diff) | |
download | guix-ec7245f0dbe3f6f9429086d6f09ad5ddfa1ab394.tar guix-ec7245f0dbe3f6f9429086d6f09ad5ddfa1ab394.tar.gz |
gnu: ncftp: Use INVOKE.
* gnu/packages/ftp.scm (ncftp)[arguments]: Use INVOKE.
Diffstat (limited to 'gnu/packages/ftp.scm')
-rw-r--r-- | gnu/packages/ftp.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/ftp.scm b/gnu/packages/ftp.scm index 8ad782ad85..bc44d7537a 100644 --- a/gnu/packages/ftp.scm +++ b/gnu/packages/ftp.scm @@ -126,9 +126,9 @@ reliability in mind.") (let ((out (assoc-ref outputs "out"))) (setenv "CONFIG_SHELL" (which "sh")) (setenv "SHELL" (which "sh")) - (zero? (system* "./configure" - (string-append "--prefix=" out))))))) - #:tests? #f)) ;there are no tests + (invoke "./configure" + (string-append "--prefix=" out)))))) + #:tests? #f)) ;there are no tests (inputs `(("ncurses" ,ncurses))) (home-page "http://www.ncftp.com/ncftp/") (synopsis "Command-line File Transfer Protocol (FTP) client") |