forked from easybuilders/easybuild-easyconfigs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
15 additions
and
0 deletions.
There are no files selected for viewing
15 changes: 15 additions & 0 deletions
15
easybuild/easyconfigs/r/R-bundle-Bioconductor/Rhdf5lib-1.20.0_fix_hardcoded_path_to_mv.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
Replace the call to /bin/mv by mv in the configure file of the included HDF5 source tarball. | ||
This prevents issues when building with a non-default sysroot. | ||
|
||
Author: Bob Dröge (University of Groningen) | ||
diff -ru Rhdf5lib.orig/src/Makevars.in Rhdf5lib/src/Makevars.in | ||
--- Rhdf5lib.orig/src/Makevars.in 2022-11-01 20:04:33.000000000 +0100 | ||
+++ Rhdf5lib/src/Makevars.in 2024-04-16 20:32:22.028694313 +0200 | ||
@@ -48,6 +48,7 @@ | ||
|
||
build-hdf5: @REQUIRE_SZIP@ @EXTRACT_SOURCE@ | ||
cd hdf5; \ | ||
+ sed -i "s|/bin/mv|mv|" ./configure; \ | ||
./configure --with-pic --enable-shared=no --enable-cxx --enable-hl \ | ||
--enable-tests=no --enable-tools=no \ | ||
--with-szlib=@SZIP_HOME@ --with-zlib=@ZLIB_HOME@ \ |