mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-25 20:19:18 -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,12 +479,12 @@ (define* (cross-libc target
|
||||||
(native-libc target libc
|
(native-libc target libc
|
||||||
#:xgcc xgcc
|
#:xgcc xgcc
|
||||||
#:xbinutils xbinutils)
|
#:xbinutils xbinutils)
|
||||||
(let ((libc libc))
|
(package
|
||||||
(package (inherit libc)
|
(inherit libc)
|
||||||
(name (string-append "glibc-cross-" target))
|
(name (string-append "glibc-cross-" target))
|
||||||
(arguments
|
(arguments
|
||||||
(substitute-keyword-arguments
|
(substitute-keyword-arguments
|
||||||
`(;; Disable stripping (see above.)
|
`( ;; Disable stripping (see above.)
|
||||||
#:strip-binaries? #f
|
#:strip-binaries? #f
|
||||||
|
|
||||||
;; This package is used as a target input, but it should not have
|
;; This package is used as a target input, but it should not have
|
||||||
|
@ -541,7 +541,7 @@ (define* (cross-libc target
|
||||||
"cross-mig")))
|
"cross-mig")))
|
||||||
'())
|
'())
|
||||||
,@(package-inputs libc) ;FIXME: static-bash
|
,@(package-inputs libc) ;FIXME: static-bash
|
||||||
,@(package-native-inputs libc)))))))
|
,@(package-native-inputs libc))))))
|
||||||
|
|
||||||
(define* (native-libc target
|
(define* (native-libc target
|
||||||
#:optional
|
#:optional
|
||||||
|
|
Loading…
Reference in a new issue