guix-commits
[Top][All Lists]
Advanced

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

10/66: gnu: ffmpeg: Use invoke.


From: Mark H. Weaver
Subject: 10/66: gnu: ffmpeg: Use invoke.
Date: Fri, 23 Mar 2018 04:46:40 -0400 (EDT)

mhw pushed a commit to branch core-updates
in repository guix.

commit 3918ed732eabb2fb9968552416009cbed47f8055
Author: Mark H Weaver <address@hidden>
Date:   Fri Mar 23 02:04:03 2018 -0400

    gnu: ffmpeg: Use invoke.
    
    * gnu/packages/video.scm (ffmpeg)[arguments]: Use invoke in the custom
    configure phase.
---
 gnu/packages/video.scm | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index 94e1729..b9db350 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -744,13 +744,13 @@ standards (MPEG-2, MPEG-4 ASP/H.263, MPEG-4 AVC/H.264, 
and VC-1/VMW3).")
                 (("#! /bin/sh") (string-append "#!" (which "sh"))))
               (setenv "SHELL" (which "bash"))
               (setenv "CONFIG_SHELL" (which "bash"))
-              (zero? (apply system*
-                            "./configure"
-                            (string-append "--prefix=" out)
-                            ;; Add $libdir to the RUNPATH of all the binaries.
-                            (string-append "--extra-ldflags=-Wl,-rpath="
-                                           out "/lib")
-                            configure-flags)))))
+              (apply invoke
+                     "./configure"
+                     (string-append "--prefix=" out)
+                     ;; Add $libdir to the RUNPATH of all the binaries.
+                     (string-append "--extra-ldflags=-Wl,-rpath="
+                                    out "/lib")
+                     configure-flags))))
          (add-before
           'check 'set-ld-library-path
           (lambda _



reply via email to

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