From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:39111) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cw1Lx-0002GU-D5 for guix-patches@gnu.org; Thu, 06 Apr 2017 02:57:10 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cw1Lq-0004oj-KC for guix-patches@gnu.org; Thu, 06 Apr 2017 02:57:09 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:36165) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cw1Lq-0004oO-Go for guix-patches@gnu.org; Thu, 06 Apr 2017 02:57:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1cw1Lq-0002AY-AE for guix-patches@gnu.org; Thu, 06 Apr 2017 02:57:02 -0400 Subject: bug#26341: [PATCH 2/2] build: vm: Add missing module. Resent-Message-ID: From: Mathieu Othacehe Date: Thu, 6 Apr 2017 08:55:45 +0200 Message-Id: <20170406065545.20624-2-m.othacehe@gmail.com> In-Reply-To: <20170406065545.20624-1-m.othacehe@gmail.com> References: <20170406065545.20624-1-m.othacehe@gmail.com> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 26341@debbugs.gnu.org * 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 commit f05346979 because we had to be sure that Guile core implementation of 'mount' and 'umount' was used in initrd context. --- gnu/build/vm.scm | 1 + 1 file changed, 1 insertion(+) diff --git a/gnu/build/vm.scm b/gnu/build/vm.scm index 60ee18ebe..44a3000eb 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) -- 2.12.2