diff options
author | Mathieu Othacehe <m.othacehe@gmail.com> | 2018-11-18 12:14:23 +0900 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-01-17 14:04:20 +0100 |
commit | ba32109a28e7c67c748838b8f5d406ccc3983e7f (patch) | |
tree | cd7b2aff710bcadec64f792d20e9c447950fb2d1 /gnu/installer | |
parent | d0f3a672dcbdfefd3556b6a21985ff0e35eed3be (diff) | |
download | patches-ba32109a28e7c67c748838b8f5d406ccc3983e7f.tar patches-ba32109a28e7c67c748838b8f5d406ccc3983e7f.tar.gz |
installer: newt: Use scheme-modules* instead of scheme-modules.
* gnu/installer/newt.scm (modules): Use scheme-modules*.
Diffstat (limited to 'gnu/installer')
-rw-r--r-- | gnu/installer/newt.scm | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/gnu/installer/newt.scm b/gnu/installer/newt.scm index abf752959b..3d9fd69bee 100644 --- a/gnu/installer/newt.scm +++ b/gnu/installer/newt.scm @@ -25,11 +25,9 @@ (define (modules) (cons '(newt) - (map module-name - (scheme-modules - (dirname (search-path %load-path "guix.scm")) - "gnu/installer/newt" - #:warn warn-about-load-error)))) + (scheme-modules* + (dirname (search-path %load-path "guix.scm")) + "gnu/installer/newt"))) (define init #~(begin |