diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-01-23 17:20:41 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-01-23 18:13:30 +0100 |
commit | e59dd3415d1293ca46a1877bccfb7671b9ade169 (patch) | |
tree | 6b4337b700d50c5a420ec48e6fee94737131a208 | |
parent | 40b8c4e34d2b311c8d8726bbc365baee6f29adb3 (diff) | |
download | patches-e59dd3415d1293ca46a1877bccfb7671b9ade169.tar patches-e59dd3415d1293ca46a1877bccfb7671b9ade169.tar.gz |
gnu: python-rarfile: Use INVOKE.
* gnu/packages/python-xyz.scm (python-rarfile)[arguments]: Unconditionally
return #T from "check" phase.
-rw-r--r-- | gnu/packages/python-xyz.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index eaf1955f22..c5f75679bc 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -8489,7 +8489,7 @@ module, adding support for Unicode strings.") (modify-phases %standard-phases (replace 'check ;; Many tests fail, but the installation proceeds. - (lambda _ (zero? (system* "make" "-C" "test" "test"))))))) + (lambda _ (invoke "make" "-C" "test" "test")))))) (native-inputs `(("which" ,which))) ; required for tests (propagated-inputs |