~ruther/guix-local

28b0b21e3f406cdf3ba9ff32ce80c7108d3d032e — Tobias Geerinckx-Rice 8 years ago 1a35f27
gnu: parallel: Don't end phase with #<undefined>.

* gnu/packages/parallel.scm (parallel)[arguments]: Use INVOKE.
1 files changed, 4 insertions(+), 4 deletions(-)

M gnu/packages/parallel.scm
M gnu/packages/parallel.scm => gnu/packages/parallel.scm +4 -4
@@ 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)))