mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 06:36:37 -05:00
gnu: cross: Add default configure-flags.
Reported by Arun Isaac <arunisaac@systemreboot.net>. * gnu/packages/cross-base.scm (cross)[arguments]: Add a default for configure-flags so '--target=' is always added.
This commit is contained in:
parent
4248fe076e
commit
5a9e3b7c39
1 changed files with 1 additions and 1 deletions
|
@ -70,7 +70,7 @@ (define (cross p target)
|
|||
(name (string-append (package-name p) "-cross-" target))
|
||||
(arguments
|
||||
(substitute-keyword-arguments (package-arguments p)
|
||||
((#:configure-flags flags)
|
||||
((#:configure-flags flags ''())
|
||||
`(cons ,(string-append "--target=" target)
|
||||
,flags))))))
|
||||
|
||||
|
|
Loading…
Reference in a new issue