diff options
author | Tomas Volf <~@wolfsden.cz> | 2024-02-23 19:18:13 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-03-02 16:26:26 +0100 |
commit | c3cd24b29ad0b781afebec3fb3269bd04ad9adec (patch) | |
tree | 57bb735d2eebbe6192ec2f2dcf5e0c4b479d714a /guix/build | |
parent | 7fc91c141346caffb546d73bf7cacef169ec587f (diff) |
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>
Diffstat (limited to 'guix/build')
-rw-r--r-- | guix/build/guile-build-system.scm | 42 |
1 files 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 |