guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/04: file-systems: Use (guix build syscalls) at build time if needed.


From: Ludovic Courtès
Subject: 01/04: file-systems: Use (guix build syscalls) at build time if needed.
Date: Tue, 14 Jul 2015 13:30:18 +0000

civodul pushed a commit to branch master
in repository guix.

commit 2de3cd8972be9181a727105ee3b0b35b24cf5317
Author: Ludovic Courtès <address@hidden>
Date:   Mon Jul 13 22:30:01 2015 +0200

    file-systems: Use (guix build syscalls) at build time if needed.
    
    * gnu/build/file-systems.scm: Wrap 'module-use!' statement in 'eval-when'.
---
 gnu/build/file-systems.scm |    7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/gnu/build/file-systems.scm b/gnu/build/file-systems.scm
index 04431ba..5814caf 100644
--- a/gnu/build/file-systems.scm
+++ b/gnu/build/file-systems.scm
@@ -53,9 +53,10 @@
 ;; 'mount' is already defined in the statically linked Guile used for initial
 ;; RAM disks, but in all other cases the (guix build syscalls) module contains
 ;; the mount binding.
-(unless (defined? 'mount)
-  (module-use! (current-module)
-               (resolve-interface '(guix build syscalls))))
+(eval-when (expand load eval)
+  (unless (defined? 'mount)
+    (module-use! (current-module)
+                 (resolve-interface '(guix build syscalls)))))
 
 ;; Linux mount flags, from libc's <sys/mount.h>.
 (define MS_RDONLY 1)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]