From 6c4d1413f2f800ac277ada50e9c1c657b3ed4bfb Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sun, 1 Apr 2018 08:02:28 +0200 Subject: 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 0a5f0b438a..4dd3e5a1ee 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 -- cgit v1.2.3