[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#27914] [PATCH] guix: Fix Guile current-processor-count deprecation
From: |
Mathieu Othacehe |
Subject: |
[bug#27914] [PATCH] guix: Fix Guile current-processor-count deprecation warnings. |
Date: |
Wed, 2 Aug 2017 15:30:52 +0200 |
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/build/utils.scm: Use (ice-9 threads).
* guix/store.scm: Ditto.
---
guix/build/utils.scm | 1 +
guix/store.scm | 1 +
2 files changed, 2 insertions(+)
diff --git a/guix/build/utils.scm b/guix/build/utils.scm
index e8efb0653..60f969486 100644
--- a/guix/build/utils.scm
+++ b/guix/build/utils.scm
@@ -29,6 +29,7 @@
#:use-module (ice-9 regex)
#:use-module (ice-9 rdelim)
#:use-module (ice-9 format)
+ #:use-module (ice-9 threads)
#:use-module (rnrs bytevectors)
#:use-module (rnrs io ports)
#:re-export (alist-cons
diff --git a/guix/store.scm b/guix/store.scm
index 2563d26fa..00d1e26fc 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
--
2.13.4
- [bug#27914] [PATCH] guix: Fix Guile current-processor-count deprecation warnings.,
Mathieu Othacehe <=