mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: cross-base: Remove unneeded 'let'.
This is a followup to 102d307520
.
* gnu/packages/cross-base.scm (cross-libc): Remove (let ((libc libc)) …).
This commit is contained in:
parent
0189574375
commit
524a4e357c
1 changed files with 57 additions and 57 deletions
|
@ -469,12 +469,12 @@ and the cross tool chain."
|
||||||
(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
|
||||||
|
@ -531,7 +531,7 @@ and the cross tool chain."
|
||||||
"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…
Add table
Add a link
Reference in a new issue