summaryrefslogtreecommitdiff
path: root/gnu/system/image.scm
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/system/image.scm')
-rw-r--r--gnu/system/image.scm6
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/system/image.scm b/gnu/system/image.scm
index 0e4967012c8..bdf4aff9718 100644
--- a/gnu/system/image.scm
+++ b/gnu/system/image.scm
@@ -352,7 +352,8 @@ set to the given OS."
352(define-syntax-rule (with-imported-modules* gexp* ...) 352(define-syntax-rule (with-imported-modules* gexp* ...)
353 (with-extensions gcrypt-sqlite3&co 353 (with-extensions gcrypt-sqlite3&co
354 (with-imported-modules `(,@(source-module-closure 354 (with-imported-modules `(,@(source-module-closure
355 '((gnu build image) 355 '((ice-9 optargs)
356 (gnu build image)
356 (gnu build bootloader) 357 (gnu build bootloader)
357 (gnu build hurd-boot) 358 (gnu build hurd-boot)
358 (gnu build linux-boot) 359 (gnu build linux-boot)
@@ -360,7 +361,8 @@ set to the given OS."
360 #:select? neither-config-nor-git?) 361 #:select? neither-config-nor-git?)
361 ((guix config) => ,(make-config.scm))) 362 ((guix config) => ,(make-config.scm)))
362 #~(begin 363 #~(begin
363 (use-modules (gnu build image) 364 (use-modules (ice-9 optargs)
365 (gnu build image)
364 (gnu build bootloader) 366 (gnu build bootloader)
365 (gnu build hurd-boot) 367 (gnu build hurd-boot)
366 (gnu build linux-boot) 368 (gnu build linux-boot)