diff options
author | Larry Knox <lrknox@hdfgroup.org> | 2020-07-07 15:52:58 (GMT) |
---|---|---|
committer | Larry Knox <lrknox@hdfgroup.org> | 2020-07-07 15:52:58 (GMT) |
commit | da607fe4638c9cc08f717fbe65e799c1676c17ff (patch) | |
tree | 5c2811363ca0513431650f6bff15e12ee36a841d | |
parent | d52b27ad1d8142945a92310b79ab79171e76a3c3 (diff) | |
download | hdf5-da607fe4638c9cc08f717fbe65e799c1676c17ff.zip hdf5-da607fe4638c9cc08f717fbe65e799c1676c17ff.tar.gz hdf5-da607fe4638c9cc08f717fbe65e799c1676c17ff.tar.bz2 |
Change load path in libhdf5_java.dylib to unversioned libhdf5.dylib for
junit tests on Macs.
-rw-r--r-- | java/test/junit.sh.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/test/junit.sh.in b/java/test/junit.sh.in index cbc57e9..62a5104 100644 --- a/java/test/junit.sh.in +++ b/java/test/junit.sh.in @@ -151,7 +151,7 @@ COPY_LIBFILES_TO_BLDLIBDIR() install_name_tool -add_rpath @loader_path libhdf5_java.dylib; \ exist_path=` otool -l libhdf5_java.dylib | grep libhdf5 | grep -v java | awk '{print $2}'`; \ echo $exist_path; \ - install_name_tool -change $exist_path @rpath/libhdf5.1000.dylib libhdf5_java.dylib) + install_name_tool -change $exist_path @rpath/libhdf5.dylib libhdf5_java.dylib) fi # copy jar files. Used -f to make sure get a new copy for tstfile in $COPY_JARTESTFILES |