summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2003-03-20 23:47:00 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2003-03-20 23:47:00 (GMT)
commit80c5ec82e7430d5daff40de1da606e11a843eea9 (patch)
treeff3944858cfabfa31ee509ad62790df7aa3edaf5 /config
parenta90774e8cc0028b9935c6dfadb2a316337e4eea4 (diff)
downloadhdf5-80c5ec82e7430d5daff40de1da606e11a843eea9.zip
hdf5-80c5ec82e7430d5daff40de1da606e11a843eea9.tar.gz
hdf5-80c5ec82e7430d5daff40de1da606e11a843eea9.tar.bz2
[svn-r6516] Purpose:
Bug fix Description: The $RUNPARALLEL is set even when parallel mode is not used. Then it is used to launch some parallel natured test (e.g. example/ph5example) which is not compiled to be so. That created some unnecessary problem in some situation (e.g., Copper cannot "poe a.out" from an AFS space because of the missing AFS token system bug. Solution: Setup RUNPARALLEL only when parallel mode is enabled. Platforms tested: Only tested in Copper since the change applies to IBM machines only. (note that v1.4 will fail by default due to a problem when the default production mode is used. But that is an error not related to this config file) Misc. update:
Diffstat (limited to 'config')
-rw-r--r--config/powerpc-ibm-aix5.x2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/powerpc-ibm-aix5.x b/config/powerpc-ibm-aix5.x
index 18be845..4b345fd 100644
--- a/config/powerpc-ibm-aix5.x
+++ b/config/powerpc-ibm-aix5.x
@@ -10,6 +10,7 @@ if test "X-" = "X-$CC"; then
if test "X-$enable_parallel" = "X-yes"; then
CC='mpcc_r -D_LARGE_FILES'
CC_BASENAME=mpcc_r
+ RUNPARALLEL=${RUNPARALLEL="MP_PROCS=3 MP_TASKS_PER_NODE=3 poe"}
else
CC='xlc -D_LARGE_FILES'
CC_BASENAME=xlc
@@ -61,7 +62,6 @@ hdf5_cv_printf_ll=${hdf5_cv_printf_ll='ll'}
ac_cv_c_bigendian=${ac_cv_c_bigendian='yes'}
ac_cv_header_stdc=${ac_cv_header_stdc='yes'}
ac_cv_header_sys_ioctl_h=${ac_cv_header_sys_ioctl_h=yes}
-RUNPARALLEL=${RUNPARALLEL="MP_PROCS=3 MP_TASKS_PER_NODE=3 poe"}
# cache the sizeof of "standard C types" so that configure can run faster.
ac_cv_sizeof_char=${ac_cv_sizeof_char=1}