mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
build-system/guile: Expose #:scheme-file-regexp when cross-compiling
* guix/build-system/guile.scm (guile-cross-build): Accept #:scheme-file-regexp and pass it on to builder.
This commit is contained in:
parent
3f222cd5ad
commit
7bbeaa87e3
1 changed files with 2 additions and 0 deletions
|
@ -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 %outputs
|
|||
#: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
|
||||
|
|
Loading…
Reference in a new issue