diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-01-23 18:39:07 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-01-23 18:39:07 +0100 |
commit | cbeee88181b6e7d0c102c361bfaf5d1c152e8463 (patch) | |
tree | 4fae0ee7a50b7ec08faeafbf82c96703bcabae85 /gnu/packages/python-xyz.scm | |
parent | 6c826d3278d04c02150b3b9c3ec0515c595b641a (diff) | |
download | guix-cbeee88181b6e7d0c102c361bfaf5d1c152e8463.tar guix-cbeee88181b6e7d0c102c361bfaf5d1c152e8463.tar.gz |
gnu: python2-ttystatus: Use INVOKE.
* gnu/packages/python-xyz.scm (python2-ttystatus)[arguments]: Unconditionally
return #T from "check" phase.
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r-- | gnu/packages/python-xyz.scm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 0f02163cab..1b138f31b9 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -11262,8 +11262,7 @@ iterating over input files.") ;; and fails. (delete 'check) (add-before 'build 'check - (lambda _ - (zero? (system* "make" "check"))))))) + (lambda _ (invoke "make" "check")))))) (home-page "https://liw.fi/ttystatus/") (synopsis "Python library for showing progress reporting and status updates on terminals") |