diff options
author | Mark H Weaver <mhw@netris.org> | 2018-03-23 02:02:49 -0400 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2018-03-23 04:41:44 -0400 |
commit | 114ef0a4c5e1629c39ce1a8fcc281257e549cedd (patch) | |
tree | c96e1666414e93cc9db38dc57799dce64d4c0396 /gnu | |
parent | 472415c8dfde37e149f6a713db9447d27cf6b9d8 (diff) |
gnu: faad2: Use invoke.
* gnu/packages/audio.scm (faad2)[arguments]: Use invoke in the 'bootstrap'
phase.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/audio.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index e34c1a9f2c..86978bb0df 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -1097,7 +1097,7 @@ also play midifiles using a Soundfont.") (replace 'bootstrap (lambda _ (substitute* "bootstrap" (("\r\n") "\n")) - (zero? (system* "sh" "bootstrap"))))))) + (invoke "sh" "bootstrap")))))) (home-page "http://www.audiocoding.com/faad2.html") (synopsis "MPEG-4 and MPEG-2 AAC decoder") (description |