guix-commits
[Top][All Lists]
Advanced

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

01/01: guix: Fix Guile current-processor-count deprecation warnings.


From: Mathieu Othacehe
Subject: 01/01: guix: Fix Guile current-processor-count deprecation warnings.
Date: Tue, 5 Sep 2017 13:55:20 -0400 (EDT)

mothacehe pushed a commit to branch master
in repository guix.

commit b100a704955432b6287b62add3bd3e9ccd94f002
Author: Mathieu Othacehe <address@hidden>
Date:   Tue Sep 5 19:39:22 2017 +0200

    guix: Fix Guile current-processor-count deprecation warnings.
    
    When current-processor-count is used without (ice-9 threads) being used, 
Guile
    complains with the following warning:
    
    Import (ice-9 threads) to have access to `current-processor-count'.
    
    * guix/store.scm: Use (ice-9 threads).
---
 guix/store.scm | 1 +
 1 file changed, 1 insertion(+)

diff --git a/guix/store.scm b/guix/store.scm
index 2563d26..00d1e26 100644
--- a/guix/store.scm
+++ b/guix/store.scm
@@ -40,6 +40,7 @@
   #:use-module (ice-9 regex)
   #:use-module (ice-9 vlist)
   #:use-module (ice-9 popen)
+  #:use-module (ice-9 threads)
   #:use-module (web uri)
   #:export (%daemon-socket-uri
             %gc-roots-directory



reply via email to

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