gnu: r-with-tests: Use INVOKE.
* gnu/packages/statistics.scm (r-with-tests)[arguments]: Use INVOKE and return #T unconditionally.
This commit is contained in:
parent
ddd925f608
commit
2eaaadb4d6
|
@ -218,9 +218,9 @@ as.POSIXct(if (\"\" != Sys.getenv(\"SOURCE_DATE_EPOCH\")) {\
|
|||
"/share/zoneinfo"))
|
||||
#t))
|
||||
(add-after 'build 'make-info
|
||||
(lambda _ (zero? (system* "make" "info"))))
|
||||
(lambda _ (invoke "make" "info") #t))
|
||||
(add-after 'build 'install-info
|
||||
(lambda _ (zero? (system* "make" "install-info")))))
|
||||
(lambda _ (invoke "make" "install-info") #t)))
|
||||
#:configure-flags
|
||||
`(;; We build the recommended packages here, because they are needed in
|
||||
;; order to run the test suite. We disable them in the r-minimal
|
||||
|
|
Loading…
Reference in New Issue