[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
06/06: vm: Add missing module.
From: |
Ludovic Courtès |
Subject: |
06/06: vm: Add missing module. |
Date: |
Fri, 7 Apr 2017 17:36:50 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit abf0880a67a362122d7c2379594cf3c27c45ffbd
Author: Mathieu Othacehe <address@hidden>
Date: Thu Apr 6 08:55:45 2017 +0200
vm: Add missing module.
* gnu/build/vm.scm (define-module): Use module (guix build syscalls).
It fixes the following warnings during guix build :
gnu/build/vm.scm:233:3: warning: possibly unbound variable `mount'
gnu/build/vm.scm:238:3: warning: possibly unbound variable `umount'
gnu/build/vm.scm:268:8: warning: possibly unbound variable `mount'
gnu/build/vm.scm:276:8: warning: possibly unbound variable `umount'
gnu/build/vm.scm:315:4: warning: possibly unbound variable `mount'
gnu/build/vm.scm:323:4: warning: possibly unbound variable `umount'
This was not possible until the previous commit because we had to be sure
that Guile core implementation of 'mount' and 'umount' was used in
initrd context.
Signed-off-by: Ludovic Courtès <address@hidden>
---
gnu/build/vm.scm | 1 +
1 file changed, 1 insertion(+)
diff --git a/gnu/build/vm.scm b/gnu/build/vm.scm
index 60ee18e..44a3000 100644
--- a/gnu/build/vm.scm
+++ b/gnu/build/vm.scm
@@ -21,6 +21,7 @@
(define-module (gnu build vm)
#:use-module (guix build utils)
#:use-module (guix build store-copy)
+ #:use-module (guix build syscalls)
#:use-module (gnu build linux-boot)
#:use-module (gnu build install)
#:use-module (guix records)
- branch master updated (d10fa5c -> abf0880), Ludovic Courtès, 2017/04/07
- 01/06: pack: Add '--expression'., Ludovic Courtès, 2017/04/07
- 02/06: profiles: Slightly improve the instructions in 'etc/profile'., Ludovic Courtès, 2017/04/07
- 06/06: vm: Add missing module.,
Ludovic Courtès <=
- 03/06: build: Include 'glibc-utf8-locales' in the binary tarball., Ludovic Courtès, 2017/04/07
- 04/06: gnu: dovecot-trees: Update to 2.1.0., Ludovic Courtès, 2017/04/07
- 05/06: syscalls: Allow mount and umount use from static Guile., Ludovic Courtès, 2017/04/07