diff options
| author | Oleg Pykhalov <go.wigust@gmail.com> | 2018-09-29 11:35:17 +0300 |
|---|---|---|
| committer | Oleg Pykhalov <go.wigust@gmail.com> | 2018-09-29 11:35:17 +0300 |
| commit | 231a5c174cf879d64b3e581003b0681a0564ae6b (patch) | |
| tree | 3fbc1d0afaaf01df695cc20328f5675ff26dac00 | |
| parent | Initial commit. (diff) | |
| download | guix-majordomo-231a5c174cf879d64b3e581003b0681a0564ae6b.tar.gz | |
gnu: guile-gms: Set 'HOME' environment variable in check phase.
* gnu/packages/majordomo.scm (guile-gms)[arguments]: Set 'HOME'
environment variable in check phase.
| -rw-r--r-- | gnu/packages/majordomo.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/packages/majordomo.scm b/gnu/packages/majordomo.scm index 10e007a..e1fccf4 100644 --- a/gnu/packages/majordomo.scm +++ b/gnu/packages/majordomo.scm @@ -129,7 +129,10 @@ "/bin/cvm"))) (install-file "config.scm" (path (assoc-ref outputs "out")))) - #t)))))) + #t))) + (add-before 'check 'set-environment + (lambda _ + (setenv "HOME" (getcwd))))))) (native-inputs `(("autoconf" ,autoconf) ("automake" ,automake) |
