diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-06-26 17:52:36 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-06-27 12:46:30 +0200 |
commit | e8e3c3577ad37340583c8e83dff00d5cae4e3805 (patch) | |
tree | 89099be95c3fe3614cf7f38c5f3e2ba7a7fa3136 /gnu/packages | |
parent | 9cbd819ab72a52491afa30e7dae2e2c75d51a80c (diff) | |
download | patches-e8e3c3577ad37340583c8e83dff00d5cae4e3805.tar patches-e8e3c3577ad37340583c8e83dff00d5cae4e3805.tar.gz |
gnu: python-mpd2: Return #t from phases.
* gnu/packages/mpd.scm (python-mpd2)[arguments]: Substitute INVOKE for
SYSTEM*.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/mpd.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/mpd.scm b/gnu/packages/mpd.scm index 3c06fb0e64..57a04e1113 100644 --- a/gnu/packages/mpd.scm +++ b/gnu/packages/mpd.scm @@ -276,7 +276,7 @@ information about tracks being played to a scrobbler, such as Libre.FM.") '(#:phases (modify-phases %standard-phases (replace 'check - (lambda _ (zero? (system* "python" "mpd_test.py"))))))) + (lambda _ (invoke "python" "mpd_test.py")))))) (native-inputs `(("python-mock" ,python-mock))) (home-page "https://github.com/Mic92/python-mpd2") (synopsis "Python MPD client library") |