mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: libfabric: Check for transitive supported packages.
* gnu/packages/linux.scm (libfabric)[inputs]: Adjust if-supported function to check the package-transitive-supported-systems. Change-Id: I47d14b08906753d20f6f2a7ab4068a9e84319350
This commit is contained in:
parent
2790f7b437
commit
0aae7c333d
1 changed files with 2 additions and 2 deletions
|
@ -9134,11 +9134,11 @@ known as Slingshot.")
|
||||||
(base32 "1znmw83rmippv0fwz0x7lgylfk17dr9ckll8lrm4z7kclspnqpj8"))))
|
(base32 "1znmw83rmippv0fwz0x7lgylfk17dr9ckll8lrm4z7kclspnqpj8"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(inputs
|
(inputs
|
||||||
(let ((if-supported ;XXX: copied from openmpi
|
(let ((if-supported ;XXX: modified from openmpi
|
||||||
(lambda (package . extra)
|
(lambda (package . extra)
|
||||||
(if (and (not (%current-target-system))
|
(if (and (not (%current-target-system))
|
||||||
(member (%current-system)
|
(member (%current-system)
|
||||||
(package-supported-systems package)))
|
(package-transitive-supported-systems package)))
|
||||||
(cons package extra)
|
(cons package extra)
|
||||||
'()))))
|
'()))))
|
||||||
(append (list rdma-core libnl)
|
(append (list rdma-core libnl)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue