diff mbox series

[bug#61641] build-system/guile: Expose #:scheme-file-regexp when cross-compiling

Message ID 6ebf254db3fee96ea3ff20eef18b2e4ccc5c4646.1676848633.git.jlicht@fsfe.org
State New
Headers show
Series [bug#61641] build-system/guile: Expose #:scheme-file-regexp when cross-compiling | expand

Commit Message

Jelle Licht Feb. 19, 2023, 11:19 p.m. UTC
From: Jelle Licht <jlicht@fsfe.org>

* guix/build-system/guile.scm (guile-cross-build): Accept #:scheme-file-regexp
and pass it on to builder.
---
 guix/build-system/guile.scm | 2 ++
 1 file changed, 2 insertions(+)


base-commit: 57495d063587e9301feddbe051abe2f97ca038be

Comments

Ludovic Courtès Feb. 24, 2023, 9:27 p.m. UTC | #1
Hello,

jlicht@fsfe.org skribis:

> From: Jelle Licht <jlicht@fsfe.org>
>
> * guix/build-system/guile.scm (guile-cross-build): Accept #:scheme-file-regexp
> and pass it on to builder.

LGTM! :-)

Ludo’.
Jelle Licht March 6, 2023, 2:10 p.m. UTC | #2
Ludovic Courtès <ludo@gnu.org> writes:

> Hello,
>
> jlicht@fsfe.org skribis:
>
>> From: Jelle Licht <jlicht@fsfe.org>
>>
>> * guix/build-system/guile.scm (guile-cross-build): Accept #:scheme-file-regexp
>> and pass it on to builder.
>
> LGTM! :-)

Pushed to master, thanks again!
- Jelle
diff mbox series

Patch

diff --git a/guix/build-system/guile.scm b/guix/build-system/guile.scm
index ffc892260a..7e2e33c13e 100644
--- a/guix/build-system/guile.scm
+++ b/guix/build-system/guile.scm
@@ -129,6 +129,7 @@  (define* (guile-cross-build name
 
                             (phases '%standard-phases)
                             (source-directory ".")
+                            (scheme-file-regexp %scheme-file-regexp)
                             not-compiled-file-regexp
                             (compile-flags %compile-flags)
                             (imported-modules %guile-build-system-modules)
@@ -154,6 +155,7 @@  (define* (guile-cross-build name
                        #:target #$target
                        #:outputs %outputs
                        #:source-directory #$source-directory
+                       #:scheme-file-regexp #$scheme-file-regexp
                        #:not-compiled-file-regexp #$not-compiled-file-regexp
                        #:compile-flags #$compile-flags
                        #:inputs %build-target-inputs