gnu: python-numpy-documentation: Use INVOKE.

* gnu/packages/python-xyz.scm (python-numpy-documentation)[arguments]:
Use INVOKE instead of SYSTEM*.
This commit is contained in:
Ricardo Wurmus 2019-01-23 18:32:27 +01:00
parent 38ec0f6adc
commit 4fc898dad9
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 4 additions and 4 deletions

View File

@ -3001,12 +3001,12 @@ color scales, and color space conversion easy. It has support for:
(with-directory-excursion "doc" (with-directory-excursion "doc"
(copy-recursively sphinx-theme-checkout scipy-sphinx-theme) (copy-recursively sphinx-theme-checkout scipy-sphinx-theme)
(mkdir-p html) (mkdir-p html)
(system* "make" "html" pyver) (invoke "make" "html" pyver)
(system* "make" "latex" "PAPER=a4" pyver) (invoke "make" "latex" "PAPER=a4" pyver)
(system* "make" "-C" "build/latex" (invoke "make" "-C" "build/latex"
"all-pdf" "PAPER=a4" pyver) "all-pdf" "PAPER=a4" pyver)
;; FIXME: Generation of the info file fails. ;; FIXME: Generation of the info file fails.
;; (system* "make" "info" pyver) ;; (invoke "make" "info" pyver)
;; (mkdir-p info) ;; (mkdir-p info)
;; (copy-file "build/texinfo/numpy.info" ;; (copy-file "build/texinfo/numpy.info"
;; (string-append info "/numpy.info")) ;; (string-append info "/numpy.info"))