[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/11: build-system/guile: Fix indentation.
From: |
guix-commits |
Subject: |
05/11: build-system/guile: Fix indentation. |
Date: |
Sat, 2 Mar 2024 11:27:14 -0500 (EST) |
civodul pushed a commit to branch master
in repository guix.
commit c3cd24b29ad0b781afebec3fb3269bd04ad9adec
Author: Tomas Volf <~@wolfsden.cz>
AuthorDate: Fri Feb 23 19:18:13 2024 +0100
build-system/guile: Fix indentation.
The inner (let) was on the same level as the outer one, which was confusing.
* guix/build/guile-build-system.scm (build): Fix indentation.
Change-Id: I701b61747c270b185eac9377b066748baa2b3d20
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
guix/build/guile-build-system.scm | 42 +++++++++++++++++++--------------------
1 file changed, 21 insertions(+), 21 deletions(-)
diff --git a/guix/build/guile-build-system.scm
b/guix/build/guile-build-system.scm
index 76bbb79259..421e358b20 100644
--- a/guix/build/guile-build-system.scm
+++ b/guix/build/guile-build-system.scm
@@ -184,32 +184,32 @@ installed; this is useful for files that are meant to be
included."
(#f "")
(path (string-append ":" path)))))
- (let ((source-files
+ (let ((source-files
(with-directory-excursion source-directory
(find-files "." scheme-file-regexp))))
- (invoke-each
- (filter-map (lambda (file)
- (and (or (not not-compiled-file-regexp)
- (not (string-match not-compiled-file-regexp
- file)))
- (cons* guild
- "guild" "compile"
- "-L" source-directory
- "-o" (string-append go-dir
- (file-sans-extension file)
- ".go")
- (string-append source-directory "/" file)
- flags)))
- source-files)
- #:max-processes (parallel-job-count)
- #:report-progress report-build-progress)
-
- (for-each
- (lambda (file)
+ (invoke-each
+ (filter-map (lambda (file)
+ (and (or (not not-compiled-file-regexp)
+ (not (string-match not-compiled-file-regexp
+ file)))
+ (cons* guild
+ "guild" "compile"
+ "-L" source-directory
+ "-o" (string-append go-dir
+ (file-sans-extension file)
+ ".go")
+ (string-append source-directory "/" file)
+ flags)))
+ source-files)
+ #:max-processes (parallel-job-count)
+ #:report-progress report-build-progress)
+
+ (for-each
+ (lambda (file)
(install-file (string-append source-directory "/" file)
(string-append module-dir
"/" (dirname file))))
- source-files))
+ source-files))
#t))
(define* (install-documentation #:key outputs
- branch master updated (efdaa885b0 -> 6f5ea7ac1a), guix-commits, 2024/03/02
- 01/11: doc: Add “Getting Started with the System” section., guix-commits, 2024/03/02
- 04/11: build-system/guile: Fix typo in documentation string., guix-commits, 2024/03/02
- 05/11: build-system/guile: Fix indentation.,
guix-commits <=
- 06/11: build-system/guile: Install .scm files first., guix-commits, 2024/03/02
- 07/11: gnu: llama-cpp: Update to 03bf16., guix-commits, 2024/03/02
- 08/11: gnu: guile-irregex: Update to 0.9.11., guix-commits, 2024/03/02
- 03/11: gnu: Add python-mord., guix-commits, 2024/03/02
- 02/11: doc: Add “Inspecting Services” section., guix-commits, 2024/03/02
- 09/11: gnu: cgit: Update to 8905003cba637e5b18069e625cd4f4c05ac30251., guix-commits, 2024/03/02
- 10/11: gnu: Add passt., guix-commits, 2024/03/02
- 11/11: gnu: podman: Update to 4.9.3., guix-commits, 2024/03/02