diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-06-26 17:49:18 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-08-21 07:04:06 +0200 |
commit | aaaede49c1aacb43ffec8ad2cf34bcc764b3ff2a (patch) | |
tree | 1cdeef6477f30c6fe9dd6c475673ada80df916a3 /gnu/packages | |
parent | bdb7447843e88a02a250ec6f782d3573eb734daf (diff) | |
download | guix-aaaede49c1aacb43ffec8ad2cf34bcc764b3ff2a.tar.gz |
gnu: r-with-tests: Return #t from all phases.
* gnu/packages/statistics.scm (r-with-tests)[arguments]: Substitute INVOKE for SYSTEM*.
Diffstat (limited to 'gnu/packages')
-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 994529baa4..655beba9b8 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -213,9 +213,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"))) (add-after 'build 'install-info - (lambda _ (zero? (system* "make" "install-info"))))) + (lambda _ (invoke "make" "install-info")))) #: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 |