diff options
author | Ludovic Courtès <ludo@gnu.org> | 2021-11-22 23:16:47 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2021-11-22 23:50:55 +0100 |
commit | 98eca86435147ffa53314614a1c2a5df1929192c (patch) | |
tree | 1e090d5ba9e5cd62eb1bf0af8f2ea658ad9e26b9 | |
parent | f12cf46eed08c5e8cc6ffec7316ea2de262aa607 (diff) |
gnu: gupnp-igd: Set HOME before 'check' phase.
* gnu/packages/gnome.scm (gupnp-igd)[arguments]: Add 'set-home' phase.
-rw-r--r-- | gnu/packages/gnome.scm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 82b002bd0d..9a31e3a087 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -257,6 +257,11 @@ (string-append (assoc-ref inputs "docbook-xml-4.1.2") "/xml/dtd/docbook/")))) #t)) + (add-before 'check 'set-home + (lambda _ + ;; A test using GIO expects ~/.config/glib-2.0/settings to be + ;; writable. + (setenv "HOME" (getcwd)))) (add-after 'install 'move-doc (lambda* (#:key outputs #:allow-other-keys) (let* ((out (assoc-ref outputs "out")) |