gnu: vpnc-scripts: Return #t from all phases.

* gnu/packages/vpn.scm (vpnc-scripts)[arguments]: Substitute INVOKE for
SYSTEM*. Return #t rather than undefined from phases.
This commit is contained in:
Tobias Geerinckx-Rice 2018-06-21 19:26:20 +02:00
parent 2cd8e6e066
commit 863501b723
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -161,7 +161,7 @@ (define-public vpnc-scripts
(delete 'configure) ; no configure script
(replace 'build
(lambda _
(zero? (system* "gcc" "-o" "netunshare" "netunshare.c"))))
(invoke "gcc" "-o" "netunshare" "netunshare.c")))
(replace 'install
;; There is no Makefile; manually install the relevant files.
(lambda* (#:key outputs #:allow-other-keys)
@ -193,7 +193,8 @@ (define-public vpnc-scripts
"sed"
"which")))))
(find-files (string-append out "/etc/vpnc/vpnc-script")
"^vpnc-script"))))))
"^vpnc-script"))
#t))))
#:tests? #f)) ; no tests
(home-page "http://git.infradead.org/users/dwmw2/vpnc-scripts.git")
(synopsis "Network configuration scripts for Cisco VPN clients")