diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-04-01 07:59:51 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-05-31 04:54:57 +0200 |
commit | 8d5960d1b16550d352324ac2d212141a7806fa76 (patch) | |
tree | 8375b865c531be23590b52214fc4375b7a1b7c79 | |
parent | 3103101ec91ebb8a9d9d15362211fecc660ab459 (diff) | |
download | patches-8d5960d1b16550d352324ac2d212141a7806fa76.tar patches-8d5960d1b16550d352324ac2d212141a7806fa76.tar.gz |
gnu: liba52: Use INVOKE.
* gnu/packages/video.scm (liba52)[arguments]: Substitute INVOKE for
SYSTEM*.
-rw-r--r-- | gnu/packages/video.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index 5f045279a6..0a5f0b438a 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -215,7 +215,8 @@ old-fashioned output methods with powerful ascii-art renderer.") ;; system fixes above. (add-after 'unpack 'bootstrap - (lambda _ (zero? (system* "sh" "bootstrap"))))))) + (lambda _ + (invoke "sh" "bootstrap")))))) (home-page "http://liba52.sourceforge.net/") (synopsis "ATSC A/52 stream decoder") (description "liba52 is a library for decoding ATSC A/52 streams. The |