diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-06-21 17:58:11 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-06-22 00:20:10 +0200 |
commit | 1fe5791d8dd78914941d9ef370ef9e49808c9c9e (patch) | |
tree | 697ee8b1ecf7c5a3af663aa875dbf39a2a14d664 /gnu/packages/video.scm | |
parent | 52fb5b3aee026dadd4bd79ca6a81035ca34575eb (diff) | |
download | guix-1fe5791d8dd78914941d9ef370ef9e49808c9c9e.tar.gz |
gnu: mplayer: Return #t from all phases.
* gnu/packages/video.scm (mplayer)[arguments]: Substitute INVOKE for SYSTEM*.
Diffstat (limited to 'gnu/packages/video.scm')
-rw-r--r-- | gnu/packages/video.scm | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index 3ab1ed7bad..af45f0f3db 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -1039,8 +1039,7 @@ treaming protocols.") (("#! /bin/sh") (string-append "#!" (which "sh")))) (setenv "SHELL" (which "bash")) (setenv "CONFIG_SHELL" (which "bash")) - (zero? (system* - "./configure" + (invoke "./configure" (string-append "--extra-cflags=-I" libx11 "/include") ; to detect libx11 "--disable-ffmpeg_a" ; disables bundled ffmpeg @@ -1062,7 +1061,7 @@ treaming protocols.") (or (%current-target-system) (nix-system->gnu-triplet (%current-system))))))) - "--disable-iwmmxt")))))))) + "--disable-iwmmxt"))))))) (home-page "https://www.mplayerhq.hu/design7/news.html") (synopsis "Audio and video player") (description "MPlayer is a movie player. It plays most MPEG/VOB, AVI, |