mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-24 11:39:46 -05:00
build-system: perl: Accept Gexps for #:module-build-flags.
Matching the change in 2d40e6f7ab
otherwise the
cross build derivations are broken, as was the case for emacs-pde.
* guix/build-system/perl.scm (perl-cross-build) [module-build-flags]: Accept
gexps.
Change-Id: I2dc85bc50bc077581e3abfc5baaedc6487118192
This commit is contained in:
parent
ca4c9062c4
commit
4cc7302e7d
1 changed files with 3 additions and 1 deletions
|
@ -197,7 +197,9 @@ (define builder
|
|||
native-search-paths))
|
||||
#:make-maker? #$make-maker?
|
||||
#:make-maker-flags #$make-maker-flags
|
||||
#:module-build-flags #$(sexp->gexp module-build-flags)
|
||||
#:module-build-flags #$(if (pair? module-build-flags)
|
||||
(sexp->gexp module-build-flags)
|
||||
module-build-flags)
|
||||
#:phases #$phases
|
||||
#:build #$build
|
||||
#:system #$system
|
||||
|
|
Loading…
Reference in a new issue