[svn-r2650] Purpose:

Bug fix
Description:
    The predefined HDF5_PARAPREFIX has a trailing slash.  The parallel
    testfile names end up with two adjacent slashes that made some system
    unhappy.
Solution:
    Removed the trailing slash.
Platforms tested:
    Arabica (solaris 2.7).
This commit is contained in:
Albert Cheng 2000-10-09 23:35:39 -05:00
parent a5a3f3c736
commit 0c492a236d

View File

@ -46,9 +46,9 @@
#ifndef HDF5_PARAPREFIX
#ifdef __PUMAGON__
/* For the PFS of TFLOPS */
#define HDF5_PARAPREFIX "pfs:/pfs_grande/multi/tmp_1/"
#define HDF5_PARAPREFIX "pfs:/pfs_grande/multi/tmp_1"
#else
#define HDF5_PARAPREFIX "/tmp/"
#define HDF5_PARAPREFIX "/tmp"
#endif
#endif
char *paraprefix = NULL; /* for command line option para-prefix */