janneke pushed a commit to branch hurd-team
in repository guix.

commit 70a901590b76860c0316622983fdf8e9cef9df10
Author: Janneke Nieuwenhuizen <[email protected]>
AuthorDate: Thu Aug 24 16:51:40 2023 +0200

    squash! self: Build directories in chunks of max 25 files at a time. -- typo
---
 guix/self.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/guix/self.scm b/guix/self.scm
index fc2dfd8131..f5ba9cd107 100644
--- a/guix/self.scm
+++ b/guix/self.scm
@@ -1254,10 +1254,10 @@ containing MODULE-FILES and possibly other files as 
well."
                             files                                  ;seed
                             list)))                                ;tail
               (for-each
-               (lambda (chunck)
+               (lambda (chunk)
                  ;; Hide compilation warnings.
                  (parameterize ((current-warning-port (%make-void-port "w")))
-                   (compile-files directory output chunck
+                   (compile-files directory output chunk
                                   #:workers (parallel-job-count)
                                   #:report-load report-load
                                   #:report-compilation report-compilation))

Reply via email to