diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-01-25 14:09:36 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-01-25 15:17:47 +0100 |
commit | c9a65d5c37a4d2843b44cb9e77a9fc320e2609db (patch) | |
tree | 2ce91aee482b7db70e5079d05a6a53a5db591bd7 | |
parent | c8780a103835b1bae690a918249c0e2d75f30f17 (diff) | |
download | guix-c9a65d5c37a4d2843b44cb9e77a9fc320e2609db.tar guix-c9a65d5c37a4d2843b44cb9e77a9fc320e2609db.tar.gz |
gnu: python-oslosphinx: Use INVOKE.
* gnu/packages/openstack.scm (python-oslosphinx)[arguments]: Use INVOKE.
-rw-r--r-- | gnu/packages/openstack.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/openstack.scm b/gnu/packages/openstack.scm index fa99ffb2b0..2906a574cf 100644 --- a/gnu/packages/openstack.scm +++ b/gnu/packages/openstack.scm @@ -626,7 +626,7 @@ and building documentation from them.") ;; Note: Upstream tests would have also built the release notes. ;; That only would work if we were in a git checkout. ;; Therefore, we don't do it here. - (zero? (system* "python" "setup.py" "build_sphinx"))))))) + (invoke "python" "setup.py" "build_sphinx")))))) (propagated-inputs `(("python-requests" ,python-requests))) (native-inputs |