GNU bug report logs -
#77103
[PATCH v1] gnu: glibc/hurd: Hide to prevent warning
Previous Next
To reply to this bug, email your comments to 77103 AT debbugs.gnu.org.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
guix-patches <at> gnu.org
:
bug#77103
; Package
guix-patches
.
(Tue, 18 Mar 2025 17:48:03 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Jakob Kirsch <jakob.kirsch <at> web.de>
:
New bug report received and forwarded. Copy sent to
guix-patches <at> gnu.org
.
(Tue, 18 Mar 2025 17:48:04 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
When dealing with the glibc package, you will often see the following warning:
warning: ambiguous package specification `glibc'
warning: choosing glibc <at> 2.39 from gnu/packages/base.scm:915:2
This is due to the fact that Hurd glibc is exported. A simple fix is to declare it as a hidden-package.
* gnu/packages/base.scm: (glibc/hurd): Hide
Change-Id: I3785a2d35e1c9b4efa039dbba7f379ae052dc69a
---
gnu/packages/base.scm | 23 ++++++++++++-----------
1 file changed, 12 insertions(+), 11 deletions(-)
diff --git a/gnu/packages/base.scm b/gnu/packages/base.scm
index 4c96ffa1a4..e8d502de8d 100644
--- a/gnu/packages/base.scm
+++ b/gnu/packages/base.scm
@@ -1663,17 +1663,18 @@ (define-public which
(license gpl3+))) ; some files are under GPLv2+
(define-public glibc/hurd
- (package/inherit glibc
- (source
- (origin
- (inherit (package-source glibc))
- (patches
- (append (origin-patches (package-source glibc))
- (search-patches "glibc-hurd-pthread_setcancelstate.patch"
- "glibc-hurd64-fault.patch"
- "glibc-hurd64-intr-msg-clobber.patch"
- "glibc-hurd64-sgms-context.patch"
- "glibc-hurd64-gcc-14.2-tls-bug.patch")))))))
+ (hidden-package
+ (package/inherit glibc
+ (source
+ (origin
+ (inherit (package-source glibc))
+ (patches
+ (append (origin-patches (package-source glibc))
+ (search-patches "glibc-hurd-pthread_setcancelstate.patch"
+ "glibc-hurd64-fault.patch"
+ "glibc-hurd64-intr-msg-clobber.patch"
+ "glibc-hurd64-sgms-context.patch"
+ "glibc-hurd64-gcc-14.2-tls-bug.patch"))))))))
(define-public glibc/hurd-headers
(package/inherit glibc/hurd
base-commit: fa39695bbc0c5f79838cbca55d55eebd821a8efa
--
2.48.1
This bug report was last modified 21 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.