gnu: parallel: Don't end phase with #<undefined>.

* gnu/packages/parallel.scm (parallel)[arguments]: Use INVOKE.
This commit is contained in:
Tobias Geerinckx-Rice 2018-01-22 18:24:45 +01:00
parent 1a35f274af
commit 28b0b21e3f
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 4 additions and 4 deletions

View File

@ -76,10 +76,10 @@
#t)) #t))
(add-after 'install 'post-install-test (add-after 'install 'post-install-test
(lambda* (#:key outputs #:allow-other-keys) (lambda* (#:key outputs #:allow-other-keys)
(zero? (system* (string-append (invoke (string-append
(assoc-ref outputs "out") "/bin/parallel") (assoc-ref outputs "out") "/bin/parallel")
"echo" "echo"
":::" "1" "2" "3"))))))) ":::" "1" "2" "3"))))))
(inputs (inputs
`(("perl" ,perl) `(("perl" ,perl)
("procps" ,procps))) ("procps" ,procps)))