mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 13:49:23 -05:00
gnu: cross-base: Remove unneeded 'let'.
This is a followup to102d307520
. * gnu/packages/cross-base.scm (cross-libc): Remove (let ((libc libc)) …). (cherry picked from commit524a4e357c
)
This commit is contained in:
parent
a533c5a183
commit
be1e842ad7
1 changed files with 57 additions and 57 deletions
|
@ -479,8 +479,8 @@ (define* (cross-libc target
|
|||
(native-libc target libc
|
||||
#:xgcc xgcc
|
||||
#:xbinutils xbinutils)
|
||||
(let ((libc libc))
|
||||
(package (inherit libc)
|
||||
(package
|
||||
(inherit libc)
|
||||
(name (string-append "glibc-cross-" target))
|
||||
(arguments
|
||||
(substitute-keyword-arguments
|
||||
|
@ -541,7 +541,7 @@ (define* (cross-libc target
|
|||
"cross-mig")))
|
||||
'())
|
||||
,@(package-inputs libc) ;FIXME: static-bash
|
||||
,@(package-native-inputs libc)))))))
|
||||
,@(package-native-inputs libc))))))
|
||||
|
||||
(define* (native-libc target
|
||||
#:optional
|
||||
|
|
Loading…
Reference in a new issue