diff options
author | Paul A. Patience <paul@apatience.com> | 2022-07-24 12:11:36 +0000 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2022-08-01 14:08:08 +0200 |
commit | e0de48f0e4a88a095bef9981df8dd3fd1f55b03e (patch) | |
tree | fa4b4e8b879c4bbe55781202902c3b357afdae90 /gnu/packages | |
parent | dee64d4776e6d97f10b71d3484dff5f350af63c3 (diff) | |
download | guix-e0de48f0e4a88a095bef9981df8dd3fd1f55b03e.tar.gz |
gnu: hdf5-1.8: Add missing comma to linker flag.
* gnu/packages/maths.scm (hdf5-1.8)[arguments]<#:phases>: Add missing comma to linker flag. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/maths.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index 89f98ec2b6..0795222ca8 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -1324,7 +1324,7 @@ incompatible with HDF5.") (("/bin/mv") "mv")) (substitute* "fortran/src/Makefile.in" (("libhdf5_fortran_la_LDFLAGS =") - (string-append "libhdf5_fortran_la_LDFLAGS = -Wl-rpath=" + (string-append "libhdf5_fortran_la_LDFLAGS = -Wl,-rpath=" (assoc-ref outputs "fortran") "/lib"))) (substitute* "hl/fortran/src/Makefile.in" (("libhdf5hl_fortran_la_LDFLAGS =") |