dannym pushed a commit to branch wip-installer-2
in repository guix.
commit 5da594165f212ea556c5f47a267c47cf6f5da4c3
Author: John Darrington <[email protected]>
Date: Wed Jan 18 10:20:10 2017 +0100
installer: Fix bug in config generation.
* gnu/system/installer/configure.scm (generate-guix-config): Call
symbol->string on the filesystem type.
---
gnu/system/installer/configure.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gnu/system/installer/configure.scm
b/gnu/system/installer/configure.scm
index 38bdab9..2980f4b 100644
--- a/gnu/system/installer/configure.scm
+++ b/gnu/system/installer/configure.scm
@@ -178,7 +178,7 @@
(device ,(file-system-spec-label fss))
(title 'label)
(mount-point ,(file-system-spec-mount-point fss))
- (type ,(file-system-spec-type fss)))))
+ (type ,(symbol->string (file-system-spec-type
fss))))))
(filter (lambda (x)
(let ((fss (cdr x)))
(not (eq? 'swap (file-system-spec-type
fss)))))