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

* gnu/packages/parallel.scm (parallel)[arguments]: Use INVOKE.
master
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))
(add-after 'install 'post-install-test
(lambda* (#:key outputs #:allow-other-keys)
(zero? (system* (string-append
(assoc-ref outputs "out") "/bin/parallel")
"echo"
":::" "1" "2" "3")))))))
(invoke (string-append
(assoc-ref outputs "out") "/bin/parallel")
"echo"
":::" "1" "2" "3"))))))
(inputs
`(("perl" ,perl)
("procps" ,procps)))