mirror of
git://git.savannah.gnu.org/guix.git
synced 2023-12-14 03:33:07 +01:00
gnu: mpich: Remove input labels and trailing #t in phases.
* gnu/packages/mpi.scm (mpich)[inputs]: Remove labels. [arguments]: Remove trailing #t from phases.
This commit is contained in:
parent
7bf85e63c1
commit
3f536e01c1
1 changed files with 6 additions and 8 deletions
|
@ -448,12 +448,12 @@ arrays) that expose a buffer interface.")
|
|||
"1farz5zfx4cd0c3a0wb9pgfypzw0xxql1j1294z1sxslga1ziyjb"))))
|
||||
(build-system gnu-build-system)
|
||||
(inputs
|
||||
`(("zlib" ,zlib)
|
||||
("hwloc" ,hwloc-2 "lib")
|
||||
("slurm" ,slurm)
|
||||
`(,zlib
|
||||
(,hwloc-2 "lib")
|
||||
,slurm
|
||||
,@(if (and (not (%current-target-system))
|
||||
(member (%current-system) (package-supported-systems ucx)))
|
||||
`(("ucx" ,ucx))
|
||||
(list ucx)
|
||||
'())))
|
||||
(native-inputs
|
||||
(list perl which gfortran))
|
||||
|
@ -490,8 +490,7 @@ arrays) that expose a buffer interface.")
|
|||
(substitute* (find-files "." "f77tof90")
|
||||
(("/usr/bin/env") (which "env")))
|
||||
(substitute* (find-files "." "\\.sh$")
|
||||
(("/bin/sh") (which "sh")))
|
||||
#t))
|
||||
(("/bin/sh") (which "sh")))))
|
||||
(add-before 'configure 'fix-makefile
|
||||
(lambda _
|
||||
;; Remove "@hwloclib@" from 'pmpi_convenience_libs'.
|
||||
|
@ -501,8 +500,7 @@ arrays) that expose a buffer interface.")
|
|||
(("^pmpi_convenience_libs = (.*) @hwloclib@ (.*)$" _
|
||||
before after)
|
||||
(string-append "pmpi_convenience_libs = "
|
||||
before " " after)))
|
||||
#t))
|
||||
before " " after)))))
|
||||
(add-before 'configure 'define-gfortran-wrapper
|
||||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
;; 'configure' checks whether the Fortran compiler
|
||||
|
|
Loading…
Reference in a new issue