diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2024-12-16 14:59:23 +0900 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2025-02-13 00:07:21 +0900 |
commit | 575cb765e28f620edbfdbdeaadd1351b28233257 (patch) | |
tree | 3554622648e36fb366ffb31792e4638e5e26230d | |
parent | 58f5c9ad8263ef62aead4af52761d851e54ea8af (diff) | |
download | guix-575cb765e28f620edbfdbdeaadd1351b28233257.tar.gz guix-575cb765e28f620edbfdbdeaadd1351b28233257.zip |
build/guile-build-system: Fix byte-compilation warnings.
* guix/build/guile-build-system.scm: Hide 'delete' from (guix build utils), to
avoid shadowing the builtin.
(invoke-each): Replace current-processor-count with parallel-job-count. The
former would require importing (ice-9 threads).
Change-Id: I7cde3305b9017bfec52ffe50ed124e21cbdceb25
-rw-r--r-- | guix/build/guile-build-system.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guix/build/guile-build-system.scm b/guix/build/guile-build-system.scm index b497573c0a..d2198b6715 100644 --- a/guix/build/guile-build-system.scm +++ b/guix/build/guile-build-system.scm @@ -18,7 +18,7 @@ (define-module (guix build guile-build-system) #:use-module ((guix build gnu-build-system) #:prefix gnu:) - #:use-module (guix build utils) + #:use-module ((guix build utils) #:hide (delete)) #:use-module (srfi srfi-1) #:use-module (srfi srfi-26) #:use-module (ice-9 match) @@ -79,7 +79,7 @@ determined." (setenv "GUIX_LOCPATH" (string-append locales "/lib/locale"))))) (define* (invoke-each commands - #:key (max-processes (current-processor-count)) + #:key (max-processes (parallel-job-count)) report-progress) "Run each command in COMMANDS in a separate process, using up to MAX-PROCESSES processes in parallel. Call REPORT-PROGRESS at each step. |