diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2018-11-09 10:47:05 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2018-11-09 14:07:22 +0100 |
commit | 2eaaadb4d67977773d7f39ab0025acdffc135cc0 (patch) | |
tree | 099cd34cda5991388774070d3701ff705ed30bd0 /gnu/packages/statistics.scm | |
parent | ddd925f608bf7bf9af367447ef937e92d531a941 (diff) | |
download | guix-2eaaadb4d67977773d7f39ab0025acdffc135cc0.tar guix-2eaaadb4d67977773d7f39ab0025acdffc135cc0.tar.gz |
gnu: r-with-tests: Use INVOKE.
* gnu/packages/statistics.scm (r-with-tests)[arguments]: Use INVOKE and
return #T unconditionally.
Diffstat (limited to 'gnu/packages/statistics.scm')
-rw-r--r-- | gnu/packages/statistics.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index 642fa2d423..e76bc7cfc7 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -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 |