diff options
author | James Laird <jlaird@hdfgroup.org> | 2005-02-20 05:25:28 (GMT) |
---|---|---|
committer | James Laird <jlaird@hdfgroup.org> | 2005-02-20 05:25:28 (GMT) |
commit | 322297809cfe9e7ca4ed39d62706f1d0301a0da1 (patch) | |
tree | 4d3d3d5b85bda86310ee26cc16fc1e885ce8102f /bin/ltmain.sh | |
parent | e03fe7a647d650a2dfd8ab1546272d610709ddc9 (diff) | |
download | hdf5-322297809cfe9e7ca4ed39d62706f1d0301a0da1.zip hdf5-322297809cfe9e7ca4ed39d62706f1d0301a0da1.tar.gz hdf5-322297809cfe9e7ca4ed39d62706f1d0301a0da1.tar.bz2 |
[svn-r10048]
Purpose:
Bug fix
Description:
HDF5's libtool includes a hack to ensure that libraries are found
on IRIX. This hack did not have the correct path for the hl-fortran
tests to find the main library.
Solution:
Extend the hack. This may call for a better long-term solution...
Platforms tested:
modi4 (hack only takes effect on IRIX)
Diffstat (limited to 'bin/ltmain.sh')
-rw-r--r-- | bin/ltmain.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/ltmain.sh b/bin/ltmain.sh index ef07484..9987c69 100644 --- a/bin/ltmain.sh +++ b/bin/ltmain.sh @@ -3219,7 +3219,7 @@ EOF *irix[56]*) # Add in paths just for the HDF5 library stuff... pwd=`pwd`; - rpath="${wl}-rpath ${wl}$pwd/.libs:$pwd/../src/.libs:$pwd/../../src/.libs:$pwd/../test/.libs$rpath"; + rpath="${wl}-rpath ${wl}$pwd/.libs:$pwd/../src/.libs:$pwd/../../src/.libs:$pwd/../test/.libs:$pwd/../../../src/.libs$rpath"; # Modify the rpaths so that the compiler can handle the number # of library paths |