summaryrefslogtreecommitdiffstats
path: root/aclocal.m4
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2003-06-18 04:04:42 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2003-06-18 04:04:42 (GMT)
commit3d0317ad119df4aa1c963bcbf6f4de8cf44c3d6e (patch)
treeb5387699bbef3f8a17f6a3616c5bc9f5e26fe60b /aclocal.m4
parent6a15443e7cf7c5ff8a44d9c99d3af0a9202bc90e (diff)
downloadhdf5-3d0317ad119df4aa1c963bcbf6f4de8cf44c3d6e.zip
hdf5-3d0317ad119df4aa1c963bcbf6f4de8cf44c3d6e.tar.gz
hdf5-3d0317ad119df4aa1c963bcbf6f4de8cf44c3d6e.tar.bz2
[svn-r7046] Purpose:
bug fix Description: Parallel binary generated in copper could not run without first setting LIBPATH to some values. This is because libtool putting a very restrictive libray path into the generated library. Solution: There had been hack in before for the other IBM SP systems identified by hostname. Add copper to the list. Also, narrow down the hostname patter for Nersc Seaborg machine a little bit. Platforms tested: Copper parallel only since that is the only place it failed. Misc. update:
Diffstat (limited to 'aclocal.m4')
-rw-r--r--aclocal.m46
1 files changed, 5 insertions, 1 deletions
diff --git a/aclocal.m4 b/aclocal.m4
index 0ecf501..48a8328 100644
--- a/aclocal.m4
+++ b/aclocal.m4
@@ -1506,10 +1506,14 @@ else
# The ``-b nolibpath -b ...'' flags were messing with the mpicc
# compiler's already defined library paths and it wasn't able to find
# the libraries it needed to run....DOH!
+ # s[0-9][0-9][0-9][0-9][0-9] are seaborg.nersc.gov nodes
+ # Cu[0-9][0-9] are copper.ncsa.uiuc.edu nodes
hname="`hostname`"
case "$hname" in
- *pacific.llnl.gov | snow*.llnl.gov | *s0*)
+ *pacific.llnl.gov | snow*.llnl.gov | \
+ s[[0-9]][[0-9]][[0-9]][[0-9]][[0-9]] | \
+ Cu[[0-9]][[0-9]])
hardcode_libdir_flag_spec=' '
;;
*)