guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

27/31: gnu: mkvtoolnix: Use INVOKE.


From: Tobias Geerinckx-Rice
Subject: 27/31: gnu: mkvtoolnix: Use INVOKE.
Date: Wed, 30 May 2018 22:55:37 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit 6c4d1413f2f800ac277ada50e9c1c657b3ed4bfb
Author: Tobias Geerinckx-Rice <address@hidden>
Date:   Sun Apr 1 08:02:28 2018 +0200

    gnu: mkvtoolnix: Use INVOKE.
    
    * gnu/packages/video.scm (mkvtoolnix)[arguments]: Substitute INVOKE for
    SYSTEM*.
---
 gnu/packages/video.scm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index 0a5f0b4..4dd3e5a 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -368,13 +368,13 @@ H.264 (MPEG-4 AVC) video streams.")
          (replace 'build
            (lambda _
              (let ((-j (list "-j" (number->string (parallel-job-count)))))
-               (zero? (apply system* "rake" -j)))))
+               (apply invoke "rake" -j))))
          (replace 'check
            (lambda _
-             (zero? (system* "rake" "tests/unit"))))
+             (invoke "rake" "tests/unit")))
          (replace 'install
            (lambda _
-             (zero? (system* "rake" "install")))))))
+             (invoke "rake" "install"))))))
     (home-page "https://mkvtoolnix.download";)
     (synopsis "Tools to create, alter and inspect Matroska files")
     (description



reply via email to

[Prev in Thread] Current Thread [Next in Thread]