mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: r: Set default pager.
* gnu/packages/statistics.scm (r)[arguments]: Add phase "set-default-pager" to avoid "false" as a default pager.
This commit is contained in:
parent
28de8d258b
commit
f4f4ced8dc
1 changed files with 10 additions and 5 deletions
|
@ -58,11 +58,16 @@ (define-public r
|
|||
(assoc-ref %outputs "out")
|
||||
"/lib/R/lib"))
|
||||
#:phases
|
||||
(alist-cons-before
|
||||
'check 'set-timezone
|
||||
;; Some tests require the timezone to be set.
|
||||
(lambda _ (setenv "TZ" "UTC"))
|
||||
%standard-phases)
|
||||
(modify-phases %standard-phases
|
||||
(add-before
|
||||
'configure 'set-default-pager
|
||||
;; Set default pager to "cat", because otherwise it is "false",
|
||||
;; making "help()" print nothing at all.
|
||||
(lambda _ (setenv "PAGER" "cat") #t))
|
||||
(add-before
|
||||
'check 'set-timezone
|
||||
;; Some tests require the timezone to be set.
|
||||
(lambda _ (setenv "TZ" "UTC") #t)))
|
||||
#:configure-flags
|
||||
'("--with-blas"
|
||||
"--with-lapack"
|
||||
|
|
Loading…
Reference in a new issue