diff options
author | Mathieu Othacehe <m.othacehe@gmail.com> | 2017-09-05 19:41:31 +0200 |
---|---|---|
committer | Mathieu Othacehe <m.othacehe@gmail.com> | 2017-09-05 19:41:31 +0200 |
commit | 325ff6fe157a2d2b7b06abddbc9e72e6a64becfd (patch) | |
tree | 2ca6f2b5f553422a8a6640d90aa32040d6c06164 /guix/build/utils.scm | |
parent | 9f993702a6a19571a2184accdbc29fd5bb46034f (diff) |
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/build/utils.scm: Use (ice-9 threads).
Diffstat (limited to 'guix/build/utils.scm')
-rw-r--r-- | guix/build/utils.scm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/guix/build/utils.scm b/guix/build/utils.scm index 7391307c87..d7ed3d5177 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 |