mirror of
https://codeberg.org/guix/guix.git
synced 2026-01-25 12:05:19 -06:00
build-system: copy: Remove dead glibc code.
An unused glibc package made its way into the copy-build-system. It's confusing, so remove it. * guix/build-system/copy.scm (default-glibc): Remove variable. (lower): Remove glibc keyword. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
20a9c13092
commit
cf05f12cb7
1 changed files with 0 additions and 8 deletions
|
|
@ -30,7 +30,6 @@
|
|||
#:use-module (guix packages)
|
||||
#:use-module (srfi srfi-1)
|
||||
#:export (%copy-build-system-modules
|
||||
default-glibc
|
||||
lower
|
||||
copy-build
|
||||
copy-build-system))
|
||||
|
|
@ -48,15 +47,8 @@
|
|||
`((guix build copy-build-system)
|
||||
,@%default-gnu-imported-modules))
|
||||
|
||||
(define (default-glibc)
|
||||
"Return the default glibc package."
|
||||
;; Do not use `@' to avoid introducing circular dependencies.
|
||||
(let ((module (resolve-interface '(gnu packages base))))
|
||||
(module-ref module 'glibc)))
|
||||
|
||||
(define* (lower name
|
||||
#:key source inputs native-inputs outputs system target
|
||||
(glibc (default-glibc))
|
||||
#:allow-other-keys
|
||||
#:rest arguments)
|
||||
"Return a bag for NAME from the given arguments."
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue