From e80c05ac3eca7438b8f2fd43c712e001e455268d Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sun, 1 Apr 2018 07:35:12 +0200 Subject: [PATCH] gnu: ffmpeg: Use INVOKE. * gnu/packages/video.scm (ffmpeg)[arguments]: Substitute INVOKE for SYSTEM*. --- 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 8464370d28..03bde3ff61 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -756,13 +756,13 @@ (define-public ffmpeg (("#! /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 _