summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorRomain GARBAGE <romain.garbage@inria.fr>2026-04-02 14:34:39 +0200
committerLudovic Courtès <ludo@gnu.org>2026-04-07 13:26:21 +0200
commit8f7e01b698ef781497b08a79fe4fe599bf70fe01 (patch)
tree3904a287eb2242a2915d5597b4201cd18d0e4045 /gnu
parentae0a9c93be7130841915dbd2ed9f8cc03fe720dd (diff)
gnu: openmpi-5: Drop calls to PACKAGE?.
See https://codeberg.org/guix/guix/pulls/7609#issuecomment-12558714. * gnu/packages/mpi.scm (openmpi-5): Drop calls to PACKAGE?. Change-Id: I19254aea9e71773cbbdf9719a129f33a0c153e87 Signed-off-by: Ludovic Courtès <ludo@gnu.org> Merges: #7609
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/mpi.scm6
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/mpi.scm b/gnu/packages/mpi.scm
index 790f8749454..8484d907fec 100644
--- a/gnu/packages/mpi.scm
+++ b/gnu/packages/mpi.scm
@@ -470,7 +470,7 @@ software vendors, application developers and computer science researchers.")
"--with-sge"
"--disable-static"
- #$@(if (package? (this-package-input "valgrind"))
+ #$@(if (this-package-input "valgrind")
#~("--enable-memchecker"
"--with-valgrind")
#~("--without-valgrind"))
@@ -491,13 +491,13 @@ software vendors, application developers and computer science researchers.")
;; Explicitly activate PSM2 when present. This is required
;; for autotools to add the -L flag to .la files, that
;; fixes link-time errors when missing.
- #$@(if (package? (this-package-input "psm2"))
+ #$@(if (this-package-input "psm2")
#~((string-append "--with-psm2=" #$(this-package-input "psm2")))
#~())
;; Since 5.x, Infiniband support is provided by ucx.
;; See https://docs.open-mpi.org/en/main/release-notes/networks.html#miscellaneous-network-notes
- #$@(if (package? (this-package-input "ucx"))
+ #$@(if (this-package-input "ucx")
#~((string-append "--with-ucx=" #$(this-package-input "ucx")))
#~()))