gnu: Remove leftover references to ‘%glibc/hurd-configure-flags’.

This is a followup to 901b3c2a9db1935149d6ee366bf6f2a325391740.

* gnu/packages/base.scm (glibc/hurd-headers): Remove reference to
‘%glibc/hurd-configure-flags’.
* gnu/packages/cross-base.scm (cross-libc*): Likewise.

Change-Id: Iac43d84e3407c16a0f3f926d795b55c7b7ac73fd
This commit is contained in:
Ludovic Courtès 2024-05-15 12:10:24 +02:00
parent 839285dd5b
commit c7377b7e04
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5
2 changed files with 2 additions and 4 deletions

View file

@ -1575,8 +1575,7 @@ (define-public glibc/hurd-headers
(substitute-keyword-arguments (package-arguments glibc/hurd)
;; We just pass the flags really needed to build the headers.
((#:configure-flags flags)
`(list "--enable-add-ons"
,@%glibc/hurd-configure-flags))
`(list "--enable-add-ons"))
((#:phases _)
'(modify-phases %standard-phases
(replace 'install

View file

@ -701,8 +701,7 @@ (define* (cross-libc* target
((#:configure-flags flags)
`(cons ,(string-append "--host=" target)
,(if (target-hurd? target)
`(append (list "--disable-werror"
,@%glibc/hurd-configure-flags)
`(append (list "--disable-werror")
,flags)
flags)))
((#:phases phases)