From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:53795) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cuh21-0001u6-Ng for guix-patches@gnu.org; Sun, 02 Apr 2017 11:03:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cuh1y-0005e0-L0 for guix-patches@gnu.org; Sun, 02 Apr 2017 11:03:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:59423) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cuh1y-0005do-Hu for guix-patches@gnu.org; Sun, 02 Apr 2017 11:03:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1cuh1y-0004MC-5G for guix-patches@gnu.org; Sun, 02 Apr 2017 11:03:02 -0400 Subject: bug#26341: [PATCH] build: vm: Add missing module. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:53686) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cuh1Z-0001oc-AT for guix-patches@gnu.org; Sun, 02 Apr 2017 11:02:38 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cuh1W-00057r-7N for guix-patches@gnu.org; Sun, 02 Apr 2017 11:02:37 -0400 Received: from mail-wr0-x242.google.com ([2a00:1450:400c:c0c::242]:32806) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cuh1W-000572-1a for guix-patches@gnu.org; Sun, 02 Apr 2017 11:02:34 -0400 Received: by mail-wr0-x242.google.com with SMTP id u18so27070258wrc.0 for ; Sun, 02 Apr 2017 08:02:33 -0700 (PDT) From: Mathieu Othacehe Date: Sun, 2 Apr 2017 17:01:57 +0200 Message-Id: <20170402150157.7149-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' --- gnu/build/vm.scm | 1 + 1 file changed, 1 insertion(+) diff --git a/gnu/build/vm.scm b/gnu/build/vm.scm index 766163e1d..cc705832c 100644 --- a/gnu/build/vm.scm +++ b/gnu/build/vm.scm @@ -22,6 +22,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