3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: ncftp: Use INVOKE.

* gnu/packages/ftp.scm (ncftp)[arguments]: Use INVOKE.
This commit is contained in:
Ricardo Wurmus 2019-01-25 12:15:04 +01:00
parent 15dc8ed5f4
commit ec7245f0db
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -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")